From 0e3acdcfcf6fc4377b0cedcc7a6ccfa67504bbaa Mon Sep 17 00:00:00 2001 From: Alcheri Date: Fri, 1 May 2026 01:01:33 +1000 Subject: [PATCH] Delete .github/workflows/dependabot-automerge.yml Signed-off-by: Alcheri --- .github/workflows/dependabot-automerge.yml | 30 ---------------------- 1 file changed, 30 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 f85833b..0000000 --- a/.github/workflows/dependabot-automerge.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Dependabot auto-merge (pip patch/minor) - -on: - pull_request: - types: [opened, reopened, synchronize, ready_for_review] - -permissions: - contents: write - pull-requests: write - -jobs: - enable-automerge: - if: github.actor == 'dependabot[bot]' && github.event.pull_request.draft == false - runs-on: ubuntu-latest - steps: - - name: Fetch Dependabot metadata - id: metadata - uses: dependabot/fetch-metadata@v2 - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - - - name: Enable auto-merge (rebase) for pip patch/minor only - if: > - steps.metadata.outputs.package-ecosystem == 'pip' && - (steps.metadata.outputs.update-type == 'version-update:semver-patch' || - steps.metadata.outputs.update-type == 'version-update:semver-minor') - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PR_URL: ${{ github.event.pull_request.html_url }} - run: gh pr merge --auto --rebase "$PR_URL" \ No newline at end of file