aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-04-24 05:26:42 +0800
committerGitHub <noreply@github.com>2022-04-23 14:26:42 -0700
commitcfaf7440fceb5967245966332d38794f5106552d (patch)
tree4fafb17e3ba68da60ab8f2c484591d4ff0d64373 /.github/workflows
parentd3df415228aee4a9735ce30db569cb7c5da1f535 (diff)
downloadrneovim-cfaf7440fceb5967245966332d38794f5106552d.tar.gz
rneovim-cfaf7440fceb5967245966332d38794f5106552d.tar.bz2
rneovim-cfaf7440fceb5967245966332d38794f5106552d.zip
ci(backport): remove triggering by comment (#18210)
Triggering by comment is not needed. Applying the label is enough to trigger the backport action.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/backport.yml6
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml
index d281bb1404..75ee81d368 100644
--- a/.github/workflows/backport.yml
+++ b/.github/workflows/backport.yml
@@ -2,8 +2,6 @@ name: Backport
on:
pull_request_target:
types: [closed, labeled]
- issue_comment:
- types: [created]
jobs:
backport:
permissions:
@@ -14,10 +12,6 @@ jobs:
github.repository_owner == 'neovim' && (
github.event_name == 'pull_request_target' &&
github.event.pull_request.merged
- ) || (
- github.event_name == 'issue_comment' &&
- github.event.issue.pull_request &&
- contains(github.event.comment.body, '/backport')
)
runs-on: ubuntu-latest
steps: