From 0df9443890d929e51178d70fb1ac5f14f023bbf6 Mon Sep 17 00:00:00 2001 From: civisrom <167646351+civisrom@users.noreply.github.com> Date: Sat, 8 Mar 2025 18:29:50 +0300 Subject: [PATCH] Delete .github/workflows/dependabot-auto-merge.yml --- .github/workflows/dependabot-auto-merge.yml | 27 --------------------- 1 file changed, 27 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 28a5c725..00000000 --- a/.github/workflows/dependabot-auto-merge.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Auto-merge Dependabot PRs -on: - pull_request: - types: - - opened - - synchronize - - reopened - -permissions: - pull-requests: write - contents: write - -jobs: - auto-merge: - runs-on: ubuntu-latest - steps: - - name: Auto-approve Dependabot PRs - if: github.actor == 'dependabot[bot]' - run: gh pr review --approve "$GITHUB_REF" - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Merge Dependabot PRs - if: github.actor == 'dependabot[bot]' - run: gh pr merge --auto --squash "$GITHUB_REF" - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}