We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf198b6 commit 25e8bbeCopy full SHA for 25e8bbe
.github/workflows/github_actions_build.yml
@@ -244,3 +244,20 @@ jobs:
244
run: |
245
cd ${{ env.BUILD_PATH }}
246
ctest --verbose --output-on-failure -C Debug
247
+
248
+ auto-merge:
249
+ needs: [Linux, macOS, Windows]
250
+ runs-on: ubuntu-latest
251
+ steps:
252
+ - name: Check out repo
253
+ uses: actions/checkout@v4
254
+ - name: auto-merge
255
+ if: |
256
+ github.actor == 'dependabot[bot]' &&
257
+ github.event_name == 'pull_request'
258
+ run: |
259
+ gh pr merge --auto --rebase "$PR_URL"
260
+ env:
261
+ PR_URL: ${{github.event.pull_request.html_url}}
262
+ # this secret needs to be in the settings.secrets.dependabot
263
+ GITHUB_TOKEN: ${{secrets.GH_ACTION_TOKEN}}
0 commit comments