-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: automated backport robot and /test command
Signed-off-by: Alan Clucas <[email protected]>
- Loading branch information
Showing
6 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Backport merged pull request | ||
on: | ||
pull_request_target: | ||
types: [closed] | ||
issue_comment: | ||
types: [created] | ||
permissions: | ||
contents: write # so it can comment | ||
pull-requests: write # so it can create pull requests | ||
jobs: | ||
backport: | ||
name: Backport pull request | ||
runs-on: ubuntu-latest | ||
|
||
# Only run when pull request is merged | ||
# or when a commment of `/backport` is created by someone other than the | ||
# https://github.com/backport-action bot user (user id: 97796249). | ||
if: > | ||
( | ||
github.event_name == 'pull_request_target' && | ||
github.event.pull_request.merged | ||
) || ( | ||
github.event_name == 'issue_comment' && | ||
github.event.issue.pull_request && | ||
github.event.comment.user.id != 97796249 && | ||
github.event.comment.author_association == 'MEMBER' && | ||
github.event.comment.body == '/backport' | ||
) | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Create backport pull requests | ||
uses: korthout/backport-action@be567af183754f6a5d831ae90f648954763f17f5 # v3.1.0 | ||
with: | ||
label_pattern: ^backport/([^ ]+)$ | ||
pull_title: ${pull_title} [Backport ${target_branch}] | ||
pull_description: |- | ||
Automated backport of #${pull_number} to `${target_branch}` | ||
Associated issues if any: [${issue_refs}] | ||
experimental: | | ||
{"conflict_resolution": "draft_commit_conflicts"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,7 +139,9 @@ args | |
async | ||
auth | ||
backend | ||
backport | ||
backported | ||
backporting | ||
boolean | ||
booleans | ||
buildkit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters