From ad9531648475aecda60b5d0ab2f7f64b78c3cb1e Mon Sep 17 00:00:00 2001 From: Chris Shino <47957189+chrisshino@users.noreply.github.com> Date: Thu, 15 May 2025 15:47:10 -0400 Subject: [PATCH] Delete workflow --- .github/workflows/dependabot_auto_merge.yml | 23 --------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/dependabot_auto_merge.yml diff --git a/.github/workflows/dependabot_auto_merge.yml b/.github/workflows/dependabot_auto_merge.yml deleted file mode 100644 index e30af6e..0000000 --- a/.github/workflows/dependabot_auto_merge.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Dependabot auto-merge -on: pull_request_target - -permissions: - pull-requests: write - contents: write - -jobs: - dependabot: - runs-on: ubuntu-latest - if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} - steps: - - name: Dependabot metadata - id: metadata - uses: dependabot/fetch-metadata@v2 - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - - name: Enable auto-merge for Dependabot PRs - if: ${{ steps.metadata.outputs.update-type == 'version-update:semver-patch' }} - run: gh pr merge --auto --merge "$PR_URL" - env: - PR_URL: ${{ github.event.pull_request.html_url }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}