-
-
Notifications
You must be signed in to change notification settings - Fork 82
30 lines (27 loc) · 1.17 KB
/
auto-approve-dominions-prs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 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_target:
branches:
- dev
- master
- V6
concurrency:
group: "approve-dominion-${{ github.head_ref || github.run_id }}-${{ github.event_name }}"
cancel-in-progress: true
jobs:
approve-pr-if-dominion-is-author:
name: Approve PR if Dominion is Author
if: github.event.pull_request.user.login == 'Cyberboss' && !github.event.pull_request.draft && !contains(github.event.pull_request.body, '- [ ]') && (github.event.pull_request.base.repo.owner.login == 'tgstation' || github.event.pull_request.base.repo.owner.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"}' \
--fail