Skip to content

Commit

Permalink
Auto approval of my PR
Browse files Browse the repository at this point in the history
  • Loading branch information
r1ru committed Feb 4, 2024
1 parent e43862a commit 3e8fbab
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/auto-approve.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Auto approve

on:
pull_request:
types: [opened, synchronize, ready_for_review]

jobs:
auto-approve:
if: |
github.event.pull_request.user.login == github.repository_owner
&& ! github.event.pull_request.draft
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: hmarr/auto-approve-action@v4

0 comments on commit 3e8fbab

Please sign in to comment.