Skip to content

Commit 210c137

Browse files
authored
Auto approve dependabot PRs (#999)
1 parent d75972c commit 210c137

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/auto-approve.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Auto approve
2+
3+
on: pull_request_target
4+
5+
jobs:
6+
auto-approve:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
pull-requests: write
10+
if: github.actor == 'dependabot[bot]'
11+
steps:
12+
- uses: hmarr/auto-approve-action@v4
13+
with:
14+
review-message: "Auto approved automated PR"
15+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)