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

Create 00_pr_auto_approve.yml #1543

Merged
merged 2 commits into from
Mar 25, 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
14 changes: 14 additions & 0 deletions .github/workflows/00_pr_auto_approve.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "00 PR Auto approve"

on: pull_request_target

jobs:
auto-approve:
runs-on: ubuntu-latest
permissions:
pull-requests: write
if: contains(fromJson('["dependabot[bot]", "github-actions[bot]", "pdxjohnny"]'), github.actor)
steps:
- uses: hmarr/auto-approve-action@v4
with:
review-message: "LGTM"
Loading