From 288957cfb87455aa46830cc319ae83c5585bd3d9 Mon Sep 17 00:00:00 2001 From: Alexander Pann Date: Wed, 31 Jan 2024 08:19:59 +0100 Subject: [PATCH] Activate automatic merging of PRs into the next maintenance branch --- .github/workflows/PR-into-next-version.yml | 10 ++++++++++ 1 file changed, 10 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..4bf0aa5a --- /dev/null +++ b/.github/workflows/PR-into-next-version.yml @@ -0,0 +1,10 @@ +name: PR to merge into the next version + +on: + push: + branches: + - 'maintenance/MPS-*' + +jobs: + create-pr: + uses: specificlanguages/cascading-merge/.github/workflows/workflow.yml@v1 \ No newline at end of file