From eb7eb452b635df36d85b0190ee28c0de1148c877 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 24 Apr 2024 01:26:52 -0700 Subject: [PATCH] ci: Bug fix: `github-actions` can't approve its own PRs, so use auto-merge rather than approval as the gate --- .github/workflows/auto_approve_prs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_approve_prs.yml b/.github/workflows/auto_approve_prs.yml index 118730d3..e85fe51b 100644 --- a/.github/workflows/auto_approve_prs.yml +++ b/.github/workflows/auto_approve_prs.yml @@ -8,7 +8,7 @@ permissions: jobs: dependabot: runs-on: ubuntu-latest - if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'github-actions' || github.actor == 'Pr0methean' }} + if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'Pr0methean' }} steps: - name: Dependabot metadata id: metadata