EllieBot-docs/.github/workflows/auto-approve.yml

26 lines
No EOL
568 B
YAML

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/EllieBot-Docs'
steps:
- name: Approve via actions
uses: hmarr/auto-approve-action@v2.2.1
if: github.actor == 'EmotionChild'
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"