Bump elgohr/Publish-Docker-Github-Action from 977fe38375c65e8e3b01d226d72c1f7d488e45dc to 6aa7c6928f7dee6eaf9a3eef414438ed54b3506b #1707
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
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.id == 8171642 && !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: Generate App Token | |
id: app-token-generation | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: GitHub API Call | |
run: | | |
curl --request POST \ | |
--url https://api.github.com/repos/${{ github.repository }}/pulls/${{github.event.number}}/reviews \ | |
--header 'authorization: Bearer ${{ steps.app-token-generation.outputs.token }}' \ | |
--header 'content-type: application/json' \ | |
-d '{"event":"APPROVE"}' \ | |
--fail |