diff options
author | James McCoy <jamessan@jamessan.com> | 2021-11-30 22:18:58 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-11-30 22:20:32 -0500 |
commit | 50c8cc30202fabbd893e0f08f0a9354f4dac8bb9 (patch) | |
tree | 5da4e66b6de4465af1d34f4a4bfb07a3352e7469 | |
parent | 828bf128a64466f254629b102e283af35666cd05 (diff) | |
download | rneovim-50c8cc30202fabbd893e0f08f0a9354f4dac8bb9.tar.gz rneovim-50c8cc30202fabbd893e0f08f0a9354f4dac8bb9.tar.bz2 rneovim-50c8cc30202fabbd893e0f08f0a9354f4dac8bb9.zip |
fix(ci/backport): check for event_name == "pull_request_target"
[skip ci]
-rw-r--r-- | .github/workflows/backport.yml | 2 |
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' && |