Skip to content

Commit d236728

Browse files
authored
fix: Adds debugging items to dependabot workflow. (#53)
1 parent 3b28a22 commit d236728

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
runs-on: ubuntu-latest
2525
env:
2626
PR_URL: ${{ github.event.pull_request.html_url }}
27-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
GH_TOKEN: ${{ github.token }}
2828
steps:
2929
- name: Check gh CLI
3030
run: gh --version
3131
- name: Debug Event
3232
run: echo "Event ${{ github.event_name }}"
3333
- name: approve
34-
env:
35-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
env:
35+
GH_TOKEN: ${{ github.token }}
3636
run: gh pr review --approve "$PR_URL"
3737
- name: merge
3838
run: gh pr merge --auto --squash --delete-branch "$PR_URL"

0 commit comments

Comments
 (0)