Create auto-approve-dominions-prs.yml

Because no one else maintains this project but me :(
This commit is contained in:
Jordan Dominion
2023-04-29 07:52:36 -04:00
committed by Dominion
parent c19b52038d
commit bb65146508
@@ -0,0 +1,25 @@
# At the time of writing this, I'm the only maintainer and I want the proper branch protections in place
# So I'm setting up actions to auto-approve my work, since no one else does :(
# - Dominion <3
name: "Auto-Approve Dominion's PRs"
on:
pull_request:
types: [opened, synchronize]
branches:
- dev
- master
jobs:
approve-pr-if-dominion-is-author:
name: Approve PR if Dominion is Author
if: github.event.pull_request.user.login == 'Cyberboss'
runs-on: ubuntu-latest
steps:
- name: GitHub API Call
run: |
curl --request POST \
--url https://api.github.com/repos/${{github.repository}}/pulls/${{github.event.number}}/reviews \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'content-type: application/json' \
-d '{"event":"APPROVE"}'