We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd127a0 commit 778800aCopy full SHA for 778800a
.github/workflows/dependabot-automerge.yml
@@ -0,0 +1,22 @@
1
+name: Dependabot auto-merge
2
+on: pull_request
3
+
4
+permissions:
5
+ contents: write
6
+ pull-requests: write
7
8
+jobs:
9
+ dependabot:
10
+ runs-on: ubuntu-latest
11
+ if: github.actor == 'dependabot[bot]'
12
+ steps:
13
+ - name: Approve PR
14
+ run: gh pr review --approve "$PR_URL"
15
+ env:
16
+ PR_URL: ${{ github.event.pull_request.html_url }}
17
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
+ - name: Enable auto-merge
19
+ run: gh pr merge --auto --merge "$PR_URL"
20
21
22
0 commit comments