aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/backport.yml6
-rw-r--r--MAINTAIN.md7
2 files changed, 2 insertions, 11 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:
diff --git a/MAINTAIN.md b/MAINTAIN.md
index 2f936c8a00..c644b88ad7 100644
--- a/MAINTAIN.md
+++ b/MAINTAIN.md
@@ -57,11 +57,8 @@ has a major bug:
The neovim repository includes a backport [github action](https://github.com/zeebe-io/backport-action).
In order to trigger the action, a PR must be labeled with a label matching the
-form `backport release-0.X`. If the label is applied before the PR is merged,
-the backport will be filed automatically against the target branch. Otherwise,
-comment `\backport` on the merged PR *after* the label has been applied to trigger
-a backport. Note, the PR must have a description in the issue body, or the backport
-will fail.
+form `backport release-0.X`. Note, the PR must have a description in the issue body,
+or the backport will fail.
Third-party dependencies
--------------