From cfaf7440fceb5967245966332d38794f5106552d Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sun, 24 Apr 2022 05:26:42 +0800 Subject: ci(backport): remove triggering by comment (#18210) Triggering by comment is not needed. Applying the label is enough to trigger the backport action. --- .github/workflows/backport.yml | 6 ------ 1 file changed, 6 deletions(-) (limited to '.github/workflows') 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: -- cgit