aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-11-30 22:31:58 -0500
committerGitHub <noreply@github.com>2021-11-30 22:31:58 -0500
commitdd3fe86bbf12acabd8c17ac29cf797d19a584de9 (patch)
tree5da4e66b6de4465af1d34f4a4bfb07a3352e7469
parent828bf128a64466f254629b102e283af35666cd05 (diff)
parent50c8cc30202fabbd893e0f08f0a9354f4dac8bb9 (diff)
downloadrneovim-dd3fe86bbf12acabd8c17ac29cf797d19a584de9.tar.gz
rneovim-dd3fe86bbf12acabd8c17ac29cf797d19a584de9.tar.bz2
rneovim-dd3fe86bbf12acabd8c17ac29cf797d19a584de9.zip
Merge pull request #16477 from jamessan/backport-action
fix(ci/backport): check for event_name == "pull_request_target"
-rw-r--r--.github/workflows/backport.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml
index 25f8414008..d281bb1404 100644
--- a/.github/workflows/backport.yml
+++ b/.github/workflows/backport.yml
@@ -12,7 +12,7 @@ jobs:
name: Backport Pull Request
if: >
github.repository_owner == 'neovim' && (
- github.event_name == 'pull_request' &&
+ github.event_name == 'pull_request_target' &&
github.event.pull_request.merged
) || (
github.event_name == 'issue_comment' &&