Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

ci: pr auto approve: On dispatch #1629

Merged
merged 4 commits into from
Jul 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 32 additions & 7 deletions .github/workflows/00_pr_auto_approve.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,41 @@
name: "00 PR Auto approve"

on: pull_request_target

permissions:
contents: read
on:
pull_request: null
repository_dispatch:
types:
- approve-pr
pull_request_review:
types:
- submitted

# https://github.com/marketplace/actions/repository-dispatch
jobs:
auto-approve:
trigger-approve-pr:
runs-on: ubuntu-latest
permissions:
contents: write
if: ${{ github.event_name == 'pull_request_review' && contains(fromJson('["pdxjohnny"]'), github.actor) }}
steps:
- name: 'Repository Dispatch: approve-pr'
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
event-type: approve-pr
client-payload: |-
{
"actor": "${{ github.actor }}",
"pull_request": {
"number": "${{ github.event.pull_request.number }}"
}
}

approve-pr:
runs-on: ubuntu-latest
permissions:
pull-requests: write
if: contains(fromJson('["dependabot[bot]", "github-actions[bot]", "pdxjohnny"]'), github.actor)
if: ${{ github.event_name == 'repository_dispatch' && contains(fromJson('["dependabot[bot]", "github-actions[bot]", "pdxjohnny"]'), github.event.actor) }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
Expand All @@ -21,7 +46,7 @@ jobs:
with:
review-message: "LGTM"

- if: contains(fromJson('["dependabot[bot]", "github-actions[bot]"]'), github.actor)
- if: contains(fromJson('["dependabot[bot]", "github-actions[bot]"]'), github.event.actor)
env:
GH_TOKEN: ${{ github.token }}
PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}
Expand Down
Loading