Skip to content

Commit

Permalink
chore: add auto approve for dev PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-milan committed Jan 19, 2024
1 parent 3e7a135 commit 4a3d689
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/auto-approve-dev-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Auto approve dev PRs for core maintainers

on: pull_request_target

jobs:
auto-approve:
runs-on: ubuntu-latest
permissions:
pull-requests: write
if: github.actor == 'TanookiVerde' && github.event.pull_request.base.ref == 'development'
steps:
- uses: hmarr/auto-approve-action@v3

0 comments on commit 4a3d689

Please sign in to comment.