From 946d21d5720bdd018abe08a4234efa44fd6d47ae Mon Sep 17 00:00:00 2001 From: Damyan Yordanov Date: Thu, 16 Nov 2023 16:12:42 +0100 Subject: [PATCH] Add auto-merge for dependabot PRs --- .github/workflows/auto-merge.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/auto-merge.yaml diff --git a/.github/workflows/auto-merge.yaml b/.github/workflows/auto-merge.yaml new file mode 100644 index 0000000..0a1ffa3 --- /dev/null +++ b/.github/workflows/auto-merge.yaml @@ -0,0 +1,28 @@ +name: Dependabot auto-approve +on: pull_request_target + +permissions: + pull-requests: write + contents: write + +jobs: + dependabot: + runs-on: self-hosted + if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} + steps: + - name: Dependabot metadata + id: dependabot-metadata + uses: dependabot/fetch-metadata@v1 + - uses: actions/checkout@v4 + - name: Setup gh cli + uses: ksivamuthu/actions-setup-gh-cli@v2 + - name: Approve a Dependabot PR + run: gh pr review --approve "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + - name: Enable auto-merge for Dependabot PRs + run: gh pr merge --auto --squash "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GH_TOKEN: ${{secrets.GITHUB_TOKEN}}