We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f6e90a commit 4d1e972Copy full SHA for 4d1e972
1 file changed
.github/workflows/dependabot-auto-merge.yml
@@ -20,13 +20,13 @@ jobs:
20
if: github.event.pull_request.user.login == 'dependabot[bot]'
21
steps:
22
- name: Approve
23
- run: gh pr review "$PR_NUMBER" --approve
+ run: gh pr review "$PR_NUMBER" --approve --repo "$GITHUB_REPOSITORY"
24
env:
25
PR_NUMBER: ${{ github.event.number }}
26
GH_TOKEN: ${{ secrets.LOCALSTACK_BOT_TOKEN }}
27
28
- name: Enable auto-merge
29
- run: gh pr merge "$PR_NUMBER" --auto --squash
+ run: gh pr merge "$PR_NUMBER" --auto --squash --repo "$GITHUB_REPOSITORY"
30
31
32
0 commit comments