From e861357c02daca35a842ce2ee9e50516f6178c24 Mon Sep 17 00:00:00 2001 From: Kirill Ivanov Date: Fri, 23 May 2025 21:33:38 +0300 Subject: [PATCH] feat(github): auto merge sync branch workflow --- .github/workflows/auto-merge-sync-pr.yml.bak | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/auto-merge-sync-pr.yml.bak diff --git a/.github/workflows/auto-merge-sync-pr.yml.bak b/.github/workflows/auto-merge-sync-pr.yml.bak new file mode 100644 index 0000000..38e7473 --- /dev/null +++ b/.github/workflows/auto-merge-sync-pr.yml.bak @@ -0,0 +1,18 @@ +name: Auto Merge Release PRs + +on: + pull_request: + types: [opened, synchronize] + branches: + - master + paths-ignore: + - ".github/**" + +jobs: + auto-merge: + if: startsWith(github.head_ref, 'sync/') + uses: rees46/workflow/.github/workflows/reusable-auto-merge-pr.yaml@master + secrets: + appSecret: ${{ secrets.VERSIONER_SECRET }} + with: + appId: ${{ vars.VERSIONER_ID }}