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