From e652d89adef624307f80401c08378c9868e68e7d Mon Sep 17 00:00:00 2001 From: Thomas Belin Date: Thu, 18 Jan 2024 12:15:48 +0100 Subject: [PATCH] chore: Add jobs that cherry picks from release branch to dev (#16546) --- .../workflows/cherry-pick-release-to-dev.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/cherry-pick-release-to-dev.yml diff --git a/.github/workflows/cherry-pick-release-to-dev.yml b/.github/workflows/cherry-pick-release-to-dev.yml new file mode 100644 index 00000000000..8330dd64e1b --- /dev/null +++ b/.github/workflows/cherry-pick-release-to-dev.yml @@ -0,0 +1,20 @@ +# 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 }}