-
Notifications
You must be signed in to change notification settings - Fork 604
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
- Loading branch information
1 parent
25af5d2
commit d8924cd
Showing
1 changed file
with
32 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,32 @@ | ||
name: backport | ||
|
||
on: | ||
pull_request_target: | ||
types: [closed, labeled] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
pull-request: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
if: github.event.pull_request.state == 'closed' && github.event.pull_request.merged && (github.event_name != 'labeled' || startsWith('backport:', github.event.label.name)) | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
- name: Create backport PRs | ||
uses: korthout/backport-action@bf5fdd624b35f95d5b85991a728bd5744e8c6cf2 # v1.3.1 | ||
# xref: https://github.com/korthout/backport-action#inputs | ||
with: | ||
# Match labels with a pattern `backport:<target-branch>` | ||
label_pattern: '^backport:([^ ]+)$' | ||
# A bit shorter pull-request title than the default | ||
pull_title: '[${target_branch}] ${pull_title}' | ||
# Simpler PR description than default | ||
pull_description: |- | ||
Automated backport to `${target_branch}`, triggered by a label in #${pull_number}. |