Skip to content

Commit

Permalink
add workflows for cherry-pick 0.6.x
Browse files Browse the repository at this point in the history
  • Loading branch information
FletcherMan committed Sep 27, 2024
1 parent 2c1af71 commit 3d77417
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/cherry_pick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,23 @@ jobs:
branch: release/0.5.x
labels: |
cherry-pick

cherry_pick_release_0_6_x:
runs-on: ubuntu-latest
name: Cherry pick into release/0.6.x
if: ${{ contains(github.event.pull_request.labels.*.name, 'release/0.6.x') && github.event.pull_request.merged == true }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into release/0.6.x
uses: carloscastrojumo/github-cherry-pick-action@v1.0.1
with:
branch: release/0.6.x
labels: |
cherry-pick
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3d77417

Please sign in to comment.