-
Notifications
You must be signed in to change notification settings - Fork 319
62 lines (60 loc) · 1.83 KB
/
auto-cherry-pick.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Automatically cherry-pick merged PR to different branches
on:
pull_request_target:
branches:
- main
types: ["closed"]
jobs:
cherry_pick_branch_0_1:
runs-on: ubuntu-latest
name: Cherry pick into branch_0.1
if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.1') && github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into branch-0.1
uses: carloscastrojumo/github-cherry-pick-action@v1.0.9
with:
branch: branch-0.1
labels: |
cherry-pick
reviewers: |
jerryshao
cherry_pick_branch_0_2:
runs-on: ubuntu-latest
name: Cherry pick into branch_0.2
if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.2') && github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into branch-0.2
uses: carloscastrojumo/github-cherry-pick-action@v1.0.9
with:
branch: branch-0.2
labels: |
cherry-pick
reviewers: |
jerryshao
cherry_pick_branch_0_3:
runs-on: ubuntu-latest
name: Cherry pick into branch_0.3
if: ${{ contains(github.event.pull_request.labels.*.name, 'branch-0.3') && github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into branch-0.3
uses: carloscastrojumo/github-cherry-pick-action@v1.0.9
with:
branch: branch-0.3
labels: |
cherry-pick
reviewers: |
jerryshao
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}