ci: Bug fix: still need to auto-merge Actions-written PRs, but don't need to auto-approve any PRs

This commit is contained in:
Chris Hennick 2024-04-24 01:40:53 -07:00
parent eb7eb452b6
commit 5ec900db1b
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -8,7 +8,7 @@ permissions:
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'Pr0methean' }}
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'github-actions' || github.actor == 'Pr0methean' }}
steps:
- name: Dependabot metadata
id: metadata
@ -16,11 +16,6 @@ jobs:
uses: dependabot/fetch-metadata@v2.0.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Enable auto-merge
run: gh pr merge --auto --merge "$PR_URL"
env: