Skip to content

Commit

Permalink
Try auto approving PRs from Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed Aug 24, 2023
1 parent 18a2e0f commit cd9908c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/auto-approve.yml
@@ -0,0 +1,16 @@
name: Auto approve

on:
pull_request:
workflow_dispatch:

jobs:
auto-approve:
runs-on: ubuntu-latest
permissions:
pull-requests: write
if: github.actor == 'github-actions[bot]'
steps:
- uses: hmarr/auto-approve-action@v3
with:
review-message: "Auto approved pull request"

0 comments on commit cd9908c

Please sign in to comment.