Skip to content

Commit

Permalink
chore: Add jobs that cherry picks from release branch to dev
Browse files Browse the repository at this point in the history
  • Loading branch information
atomrc committed Jan 18, 2024
1 parent cd84402 commit a6f30ad
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cherry-pick-release-to-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Cherry pick to dev
on:
push:
branches:
- release/*
jobs:
cherry_pick:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v1

- name: Create PR to branch
uses: gorillio/github-action-cherry-pick@master
with:
pr_branch: 'dev'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a6f30ad

Please sign in to comment.