We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d0afe9 commit aac7b94Copy full SHA for aac7b94
.github/workflows/auto-dependabot.yaml
@@ -0,0 +1,20 @@
1
+name: Dependabot Auto Manage
2
+on:
3
+ pull_request_target:
4
+ types: [opened, synchronize, reopened]
5
+
6
+permissions:
7
+ contents: write
8
+ pull-requests: write
9
10
+jobs:
11
+ dependabot:
12
+ runs-on: ubuntu-latest
13
+ if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'app/dependabot'
14
+ steps:
15
+ - uses: ad/dependabot-auto-approve@v1
16
+ with:
17
+ dependency-type: 'all'
18
+ auto-merge: 'true'
19
+ merge-method: 'merge'
20
+ add-label: 'auto-merged'
0 commit comments