-
Notifications
You must be signed in to change notification settings - Fork 88
37 lines (32 loc) · 1006 Bytes
/
backport.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: "CI: Backport the merged PR"
on:
pull_request_target:
types: [closed, labeled]
branches:
- main
permissions:
contents: write # so it can comment
pull-requests: write # so it can create pull requests
jobs:
backport:
name: Backport pull request
if: ${{ github.repository_owner == 'nvidia' &&
github.event.pull_request.merged == true
}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Load branch name
id: get-branch
run: |
OLD_BRANCH=$(cat .github/BACKPORT_BRANCH)
echo "OLD_BRANCH=${OLD_BRANCH}" >> $GITHUB_ENV
- name: Create backport pull requests
uses: korthout/backport-action@v3
with:
copy_assignees: true
copy_labels_pattern: true
copy_requested_reviewers: true
label_pattern: to-be-backported
target_branches: ${{ env.OLD_BRANCH }}
conflict_resolution: draft_commit_conflicts