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 b13e711 commit 2271359Copy full SHA for 2271359
.github/workflows/merge.yml
@@ -0,0 +1,18 @@
1
+name: 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
+ needs: [build]
12
+ if: ${{ github.actor == 'dependabot[bot]' }}
13
+ steps:
14
+ - name: Enable auto-merge for Dependabot PRs
15
+ run: gh pr merge --auto --merge "$PR_URL"
16
+ env:
17
+ PR_URL: ${{github.event.pull_request.html_url}}
18
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments