add github actions workflow and script for automating cherry-pick process

pull/1912/head
amineharbaoui 2 months ago
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 }}

@ -12,6 +12,7 @@
</option>
<option name="IMPORT_LAYOUT_TABLE">
<value>
<package name="" withSubpackages="true" static="false" module="true" />
<package name="" withSubpackages="true" static="false" />
<emptyLine />
<package name="javax" withSubpackages="true" static="false" />

Loading…
Cancel
Save