From 37b18c6a3dfcc1e3890c31ddc6cfc08d9604ccea Mon Sep 17 00:00:00 2001 From: Nick Evans <2616208+nickevansuk@users.noreply.github.com> Date: Fri, 22 Sep 2023 20:55:53 +0100 Subject: [PATCH] Delete .github/workflows/dependabot-automerge.yml --- .github/workflows/dependabot-automerge.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/dependabot-automerge.yml diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml deleted file mode 100644 index 5b952ae..0000000 --- a/.github/workflows/dependabot-automerge.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Dependabot and CI auto-merge -on: pull_request - -permissions: - contents: write - pull-requests: write - -jobs: - dependabot: - runs-on: ubuntu-latest - if: ${{ github.actor == 'dependabot[bot]' }} - steps: - - name: Dependabot metadata - id: metadata - uses: dependabot/fetch-metadata@v1 - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - - name: Enable auto-merge for Dependabot PRs - run: gh pr merge "$PR_URL" --auto --body "" --squash - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}