forked from kubernetes-sigs/cluster-api
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (42 loc) · 1.11 KB
/
cherry-pick-bot.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
on:
pull_request:
branches:
- master
types: ["closed"]
jobs:
cherry_pick_release_v1_0:
runs-on: ubuntu-latest
name: Cherry pick into release-v1.0
if: contains(github.event.pull_request.labels.*.name, 'release-v1.0')
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into release-v1.0
uses: xealth/[email protected]
with:
branch: release-v1.0
labels: |
cherry-pick
reviewers: |
aReviewerUser
cherry_pick_release_v2_0:
runs-on: ubuntu-latest
name: Cherry pick into release-v2.0
if: contains(github.event.pull_request.labels.*.name, 'release-v2.0')
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into release-v2.0
uses: xealth/[email protected]
with:
branch: release-v2.0
labels: |
cherry-pick
reviewers: |
aReviewerUser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}