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 d236728 commit c3b4faaCopy full SHA for c3b4faa
.github/workflows/dependabot.yml
@@ -22,17 +22,16 @@ permissions:
22
jobs:
23
dependabot:
24
runs-on: ubuntu-latest
25
+ if: ${{ github.actor == 'dependabot[bot]' || github.event_name == 'pull_request' }}
26
env:
27
PR_URL: ${{ github.event.pull_request.html_url }}
28
GH_TOKEN: ${{ github.token }}
29
steps:
- - name: Check gh CLI
30
- run: gh --version
+ - name: Debug Actor
31
+ run: echo "Actor ${{ github.actor }}"
32
- name: Debug Event
33
run: echo "Event ${{ github.event_name }}"
34
- name: approve
- env:
35
- GH_TOKEN: ${{ github.token }}
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