From b4fae739290e4cd9fc01b78a93fb71a6ae9cfaae Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Fri, 26 Jul 2024 09:34:47 -0700 Subject: [PATCH] Dependabot auto merge --- .github/workflows/DependabotAutoMerge.yml | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/DependabotAutoMerge.yml diff --git a/.github/workflows/DependabotAutoMerge.yml b/.github/workflows/DependabotAutoMerge.yml new file mode 100644 index 0000000..0ee51da --- /dev/null +++ b/.github/workflows/DependabotAutoMerge.yml @@ -0,0 +1,35 @@ +name: Dependabot auto-merge + +on: + pull_request: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + + dependabot: + name: Dependabot auto-merge + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + + if: github.actor == 'dependabot[bot]' + + steps: + + # https://github.com/marketplace/actions/fetch-metadata-from-dependabot-prs + # https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request + - name: Dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@v2 + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" + - name: Auto-merge dependabot non-major updates + if: steps.metadata.outputs.update-type != 'version-update:semver-major' + run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GH_TOKEN: ${{secrets.GITHUB_TOKEN}}