Skip to content

Commit cbc667c

Browse files
committed
chore: add auto-approve workflow
1 parent 7f1e051 commit cbc667c

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/auto-approve.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Auto approve
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
9+
10+
jobs:
11+
auto-approve:
12+
runs-on: ubuntu-latest
13+
permissions:
14+
pull-requests: write
15+
if: github.event.pull_request.user.login == 'dependabot[bot]'
16+
steps:
17+
- uses: hmarr/auto-approve-action@8f929096a962e83ccdfa8afcf855f39f12d4dac7

0 commit comments

Comments
 (0)