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.
2 parents f078b32 + a5555b2 commit 79c0c5eCopy full SHA for 79c0c5e
.github/workflows/ci.yaml
@@ -106,3 +106,24 @@ jobs:
106
name: Test suite
107
steps:
108
- run: echo Test suite completed
109
+
110
+ dependabot:
111
+ permissions:
112
+ contents: write
113
+ name: 'Dependabot auto-merge'
114
+ needs:
115
+ - tests
116
+ runs-on: ubuntu-latest
117
+ if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
118
+ steps:
119
+ - name: Dependabot metadata
120
+ id: metadata
121
+ uses: dependabot/[email protected]
122
+ with:
123
+ github-token: '${{ secrets.GITHUB_TOKEN }}'
124
125
+ - name: Enable auto-merge for Dependabot PRs
126
+ run: gh pr merge --auto --merge "$PR_URL"
127
+ env:
128
+ PR_URL: ${{github.event.pull_request.html_url}}
129
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments