From 1fdea3d4ad46696dcef945ed37be40e5fe9abd7b Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Mon, 4 Aug 2025 16:45:46 +0800 Subject: [PATCH] chore: disable dependabot automerge This doesn't add up to a huge amount of time saving, and interferes with merge queues. --- .github/workflows/dependabot-automerge.yaml | 25 --------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/dependabot-automerge.yaml diff --git a/.github/workflows/dependabot-automerge.yaml b/.github/workflows/dependabot-automerge.yaml deleted file mode 100644 index 0eeaf0b..0000000 --- a/.github/workflows/dependabot-automerge.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# 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 auto-merge -on: - pull_request: - branches: - - main -permissions: {} -jobs: - dependabot-automerge: - permissions: - contents: write - pull-requests: write - runs-on: ubuntu-latest - if: github.event.pull_request.user.login == 'dependabot[bot]' - steps: - - name: Fetch dependabot metadata - id: metadata - uses: dependabot/fetch-metadata@08eff52bf64351f401fb50d4972fa95b9f2c2d1b # v2.4.0 - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - - name: Enable auto-merge for Dependabot PRs # these still need approval before merge - run: gh pr merge --auto --merge "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}