1
0
Fork 0

Create auto-approve.yml

This commit is contained in:
Emotion 2022-07-25 00:59:15 +12:00 committed by GitHub
parent 430f4d03b7
commit bdffdcd68c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

26
.github/workflows/auto-approve.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Auto approve
on: pull_request
permissions:
contents: read
jobs:
auto-approve:
name: Auto approve Pull Request
runs-on: ubuntu-latest
# for hmarr/auto-approve-action to approve PRs
permissions:
pull-requests: write
# Only run this on the main repo
if: github.event.pull_request.head.repo.full_name == 'EllieBotDevs/Ellie-bot'
steps:
- name: Approve via actions
uses: hmarr/auto-approve-action@v2.2.1
if: github.actor == 'EmotionChild' || github.actor == 'dependabot[bot]'
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"