Skip to content

chore: Autodeploy to q1-2024 backend branch (#16583) #6

chore: Autodeploy to q1-2024 backend branch (#16583)

chore: Autodeploy to q1-2024 backend branch (#16583) #6

# This job will automatically create a cherry pick PR from any release/* branch to the dev branch
# It allows the dev branch to stay up-to-date with fixes made to specific release branches
name: Cherry pick to dev
on:
push:
branches:
- release/*
jobs:
cherry_pick:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Create PR to branch
uses: gorillio/github-action-cherry-pick@master
with:
pr_branch: 'dev'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}