-
Notifications
You must be signed in to change notification settings - Fork 7
74 lines (68 loc) · 2.21 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
on:
pull_request:
branches:
- main
types: ["closed"]
jobs:
cherry_pick_release_0_3_x:
runs-on: ubuntu-latest
name: Cherry pick into release/0.3.x
if: ${{ contains(github.event.pull_request.labels.*.name, 'release/0.3.x') && github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into release/0.3.x
uses: carloscastrojumo/[email protected]
with:
branch: release/0.3.x
labels: |
cherry-pick
cherry_pick_release_0_4_x:
runs-on: ubuntu-latest
name: Cherry pick into release/0.4.x
if: ${{ contains(github.event.pull_request.labels.*.name, 'release/0.4.x') && github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into release/0.4.x
uses: carloscastrojumo/[email protected]
with:
branch: release/0.4.x
labels: |
cherry-pick
cherry_pick_release_0_5_x:
runs-on: ubuntu-latest
name: Cherry pick into release/0.5.x
if: ${{ contains(github.event.pull_request.labels.*.name, 'release/0.5.x') && github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into release/0.5.x
uses: carloscastrojumo/[email protected]
with:
branch: release/0.5.x
labels: |
cherry-pick
cherry_pick_release_0_6_x:
runs-on: ubuntu-latest
name: Cherry pick into release/0.6.x
if: ${{ contains(github.event.pull_request.labels.*.name, 'release/0.6.x') && github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into release/0.6.x
uses: carloscastrojumo/[email protected]
with:
branch: release/0.6.x
labels: |
cherry-pick
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}