diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/label-merge-conflict.yml | 2 | ||||
-rw-r--r-- | .github/workflows/remove-labels-on-pr-close.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/label-merge-conflict.yml b/.github/workflows/label-merge-conflict.yml index 6c0268d6c..19e88ede7 100644 --- a/.github/workflows/label-merge-conflict.yml +++ b/.github/workflows/label-merge-conflict.yml @@ -4,7 +4,7 @@ on: push: branches: [ beta ] # So that the `dirtyLabel` is removed if conflicts are resolve - # We recommend `pull_request_target` so that github secrets are available. + # We recommend `pull_request_target` so that GitHub secrets are available. # In `pull_request` we wouldn't be able to change labels of fork PRs pull_request_target: types: [ opened, synchronize ] diff --git a/.github/workflows/remove-labels-on-pr-close.yml b/.github/workflows/remove-labels-on-pr-close.yml index 477c90d9f..fd73b7aab 100644 --- a/.github/workflows/remove-labels-on-pr-close.yml +++ b/.github/workflows/remove-labels-on-pr-close.yml @@ -3,7 +3,7 @@ name: "Remove All Labels" on: - pull_request: + pull_request_target: types: [closed] jobs: |