Skip to content

Commit 8eec66f

Browse files
committed
Adds debugging items to dependabot workflow.
1 parent 201001e commit 8eec66f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ jobs:
2727
PR_URL: ${{ github.event.pull_request.html_url }}
2828
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
steps:
30+
- name: Check gh CLI
31+
run: gh --version
32+
- name: Debug Event
33+
run: echo "Event ${{ github.event_name }}"
3034
- name: approve
35+
env:
36+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3137
run: gh pr review --approve "$PR_URL"
3238
- name: merge
3339
run: gh pr merge --auto --squash --delete-branch "$PR_URL"

0 commit comments

Comments
 (0)