Skip to content

Commit bad8916

Browse files
authored
fix: Update dependabot.yml (#58)
1. Changes 'github.token' to 'secrets.GITHUB_TOKEN'. 2. Removes debugging lines.
1 parent bfd219f commit bad8916

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/dependabot.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,10 @@ jobs:
2525
if: ${{ github.actor == 'dependabot[bot]' }}
2626
env:
2727
PR_URL: ${{ github.event.pull_request.html_url }}
28-
GH_TOKEN: ${{ github.token }}
28+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
steps:
30-
- name: Debug Actor
31-
run: echo "Actor ${{ github.actor }}"
32-
- name: Debug Event
33-
run: echo "Event ${{ github.event_name }}"
3430
- name: approve
3531
run: gh pr review --approve "$PR_URL"
3632
- name: merge
3733
run: gh pr merge --auto --squash --delete-branch "$PR_URL"
38-
34+

0 commit comments

Comments
 (0)