We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 078ecf8 commit 992c8c3Copy full SHA for 992c8c3
1 file changed
.github/workflows/dependabot.yml
@@ -35,7 +35,12 @@ jobs:
35
with:
36
github-token: "${{ secrets.GITHUB_TOKEN }}"
37
- name: Auto-approve PR
38
- run: gh pr merge "$PR_URL"
+ run: gh pr review --approve "$PR_URL"
39
+ env:
40
+ PR_URL: ${{ github.event.pull_request.html_url }}
41
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
+ - name: Merge PR
43
+ run: gh pr merge --rebase "$PR_URL"
44
env:
45
PR_URL: ${{ github.event.pull_request.html_url }}
46
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments