Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0551a6c

Browse files
authored
chore: Automatically approve dependabot PRs (#4014)
Dependabot is annoying but now it makes merging it's PRs a little bit easier!
1 parent 42d1b5e commit 0551a6c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/dependabot.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Dependabot is annoying, but this makes it a bit less so.
2+
name: Auto Approve Dependabot
3+
4+
on: pull_request_target
5+
6+
jobs:
7+
auto-approve:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
pull-requests: write
11+
steps:
12+
- uses: hmarr/auto-approve-action@v2
13+
if: github.actor == 'dependabot[bot]'

0 commit comments

Comments
 (0)