We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e6514c commit 4d12ca1Copy full SHA for 4d12ca1
.github/workflows/add-content-to-project.yml
@@ -5,9 +5,12 @@ name: "Add Issues/PRs to TF Provider DevEx team board"
5
on:
6
issues:
7
types: [opened, reopened]
8
- pull_request:
+ pull_request_target:
9
# NOTE: The way content is added to project board is equivalent to an "upsert".
10
# Calling it multiple times will be idempotent.
11
+ #
12
+ # See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
13
+ # to see the reasoning behind using `pull_request_target` instead of `pull_request`
14
types: [opened, reopened, ready_for_review]
15
16
jobs:
0 commit comments