From 7013069ac2f7e38216ff96b357275652fc3b2d34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Wed, 6 Mar 2024 02:34:42 +0200 Subject: [PATCH] Add Dependabot Auto-Merge workflow (Github Workflows) --- .github/workflows/dependabot_auto-merge.yml | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/dependabot_auto-merge.yml diff --git a/.github/workflows/dependabot_auto-merge.yml b/.github/workflows/dependabot_auto-merge.yml new file mode 100644 index 00000000..9d6e8531 --- /dev/null +++ b/.github/workflows/dependabot_auto-merge.yml @@ -0,0 +1,23 @@ +name: Dependabot Auto-Merge +on: + pull_request_target: + branches: + - v1 + - v2 + - v3 + +permissions: + pull-requests: write + contents: write + +jobs: + dependabot: + name: Dependabot Auto-Merge + runs-on: ubuntu-latest + if: ${{ github.actor == 'dependabot[bot]' }} + steps: + - name: Enable auto-merge for Dependabot PRs + run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{ github.event.pull_request.html_url }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}