-
Notifications
You must be signed in to change notification settings - Fork 4.9k
42 lines (40 loc) · 1.18 KB
/
create-cherry-pick-pr.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
name: Cherry Pick Commit
on:
# workflow_dispatch:
# inputs:
# branch_name:
# description: 'Branch name you want the cherry-pick branch to be based from'
# required: true
# commit_hash:
# description: 'Commit Hash'
# required: true
# PR_number:
# description: 'PR # Associated with Cherry Pick'
# required: true
pull_request:
types: [opened, synchronize, reopened]
jobs:
cherry-pick:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ vars.GITHUB_REF }}
fetch-depth: 0
token: ${{ secrets.BUG_REPORT_TOKEN }}
- name: Get Node.js version
id: nvm
run: echo "NODE_VERSION=$(cat .nvmrc)" >> "$GITHUB_OUTPUT"
- uses: actions/setup-node@v3
with:
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
- name: Create Cherry Pick PR
id: create-cherry-pick-pr
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./.github/scripts/create-cherry-pick-pr.sh Version-v11.14.2 378bb27 24171