We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
skip-changelog
1 parent 9ff3b68 commit aec43a1Copy full SHA for aec43a1
.github/workflows/dependabot-auto-merge.yml
@@ -14,11 +14,15 @@ jobs:
14
runs-on: ubuntu-latest
15
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'pre-commit-ci[bot]' }}
16
steps:
17
+ - name: Label bot PRs
18
+ run: gh pr edit --add-label "ci,skip-changelog" ${{ github.event.pull_request.html_url }}
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
+
22
- name: Auto-approve
23
uses: hmarr/auto-approve-action@v4
24
25
- name: Enable auto-merge
- run: gh pr merge --auto --squash "$PR_URL"
26
+ run: gh pr merge --auto --squash ${{ github.event.pull_request.html_url }}
27
env:
- PR_URL: ${{github.event.pull_request.html_url}}
- GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
28
0 commit comments