parent
6b30ffc895
commit
33803e363e
@ -0,0 +1,5 @@
|
|||||||
|
name: 'Create Cherry pick pull request'
|
||||||
|
description: 'Create Cherry pick pull request'
|
||||||
|
runs:
|
||||||
|
using: node20
|
||||||
|
main: index.js
|
@ -0,0 +1 @@
|
|||||||
|
console.log("run cherry-pick action")
|
@ -1 +1,19 @@
|
|||||||
|
name: Cherry-Pick
|
||||||
|
|
||||||
|
on: workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
cherry-pick:
|
||||||
|
name: Cherry-Pick multiple PR into one
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
- run: npm ci
|
||||||
|
|
||||||
|
- uses: ./.github/actions/cherry-pick
|
||||||
|
with:
|
||||||
|
myToken: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in new issue