-
Notifications
You must be signed in to change notification settings - Fork 1.2k
33 lines (31 loc) · 1.04 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
name: Auto Cherry Pick
on:
workflow_dispatch:
inputs:
pr_label:
description: "Cherry pick label such as 'cherry-pick-v3.2'"
required: true
defaults:
run:
shell: bash
jobs:
auto-cherry-pick:
#if: ${{ startsWith(github.event.pull_request.labels.*.name, 'cherry-pick-') && github.event.pull_request.merged == true }}
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: git config set
env:
GH_BOT_PAT: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global url."https://${GH_BOT_PAT}:[email protected]/".insteadOf "https://github.com/"
export GOPRIVATE="github.com/vesoft-inc"
- name: auto cherry pick
uses: xigongdaEricyang/cherry-pick-robot@with-python
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
pr_label: ${{ github.event.inputs.pr_label }}
#pr_num: ${{ github.event.pull_request.number }}
auto_merge: true