We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 201001e commit cabb70bCopy full SHA for cabb70b
.github/workflows/dependabot.yml
@@ -22,12 +22,17 @@ permissions:
22
jobs:
23
dependabot:
24
runs-on: ubuntu-latest
25
- if: ${{ github.actor == 'dependabot[bot]' }}
26
env:
27
PR_URL: ${{ github.event.pull_request.html_url }}
28
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GH_TOKEN: ${{ github.token }}
29
steps:
+ - name: Check gh CLI
30
+ run: gh --version
31
+ - name: Debug Event
32
+ run: echo "Event ${{ github.event_name }}"
33
- name: approve
34
+ env:
35
36
run: gh pr review --approve "$PR_URL"
37
- name: merge
38
run: gh pr merge --auto --squash --delete-branch "$PR_URL"
0 commit comments