From 8d86d4b2ff3f03255392c4dbdc487a1bdd352f91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergej=20Ko=C5=A1=C4=8Dejev?= Date: Thu, 16 May 2024 10:20:44 +0200 Subject: [PATCH] Add cascading merge workflow --- .github/workflows/PR-into-next-version.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/PR-into-next-version.yml diff --git a/.github/workflows/PR-into-next-version.yml b/.github/workflows/PR-into-next-version.yml new file mode 100644 index 00000000..0945cb9a --- /dev/null +++ b/.github/workflows/PR-into-next-version.yml @@ -0,0 +1,18 @@ +name: PR to merge into the next version + +on: + push: + branches: + - 'maintenance/MPS-*' + +jobs: + create-pr: + runs-on: ubuntu-latest + steps: + - name: Create PR + uses: specificlanguages/cascading-merge@v2 + with: + branch_prefix: maintenance/MPS- + merge_prefix: merge/MPS- + default_merge_prefix: merge/ + token: ${{ secrets.MPS_CI_BUILD_BOT_ACCESS_TOKEN }}