Merge pull request #27 from Pr0methean/auto-self-approve

Automatically approve my own PRs
This commit is contained in:
Chris Hennick 2024-04-17 15:10:42 -07:00 committed by GitHub
commit 91237d765b
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,4 @@
name: Dependabot auto-approve and auto-merge
name: Auto-approve and auto-merge owner-written and Dependabot PRs
on: pull_request
permissions:
@ -8,10 +8,11 @@ permissions:
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'Pr0methean' }}
steps:
- name: Dependabot metadata
id: metadata
if: ${{ github.actor == 'dependabot[bot]' }}
uses: dependabot/fetch-metadata@v2.0.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"