From 2a62cebf7094f73fc54ee81895af677f3d693f64 Mon Sep 17 00:00:00 2001 From: nev21 <82737406+nev21@users.noreply.github.com> Date: Sat, 7 Feb 2026 11:21:51 -0800 Subject: [PATCH] Delete .github/workflows/pr-auto-approve.yml --- .github/workflows/pr-auto-approve.yml | 37 --------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/pr-auto-approve.yml diff --git a/.github/workflows/pr-auto-approve.yml b/.github/workflows/pr-auto-approve.yml deleted file mode 100644 index 842c075..0000000 --- a/.github/workflows/pr-auto-approve.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Dependabot Auto Approve -on: - pull_request: - types: - - opened - - synchronize - - reopened - -permissions: - pull-requests: write - contents: read - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number }} - cancel-in-progress: true -jobs: - auto-approve: - runs-on: ubuntu-latest - if: | - github.event.pull_request.user.login == 'nev21' || - github.event.pull_request.user.login == 'dependabot[bot]' - steps: - - name: Wait for status checks - uses: lewagon/wait-on-check-action@v1.5.0 - with: - ref: ${{ github.event.pull_request.head.sha }} - repo-token: ${{ secrets.GITHUB_TOKEN }} - wait-interval: 30 - running-workflow-name: 'auto-approve' - allowed-conclusions: success,skipped,neutral - - - name: Approve PR - if: success() - run: gh pr review --approve "$PR_URL" - env: - PR_URL: ${{ github.event.pull_request.html_url }} - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}