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 cd02c81Copy full SHA for cd02c81
.github/workflows/dependabot.yml
@@ -22,11 +22,15 @@ permissions:
22
jobs:
23
dependabot:
24
runs-on: ubuntu-latest
25
- if: ${{ github.actor == 'dependabot[bot]' }}
+ if: ${{ github.actor == 'dependabot[bot]' || github.event_name == 'pull_request' }}
26
env:
27
PR_URL: ${{ github.event.pull_request.html_url }}
28
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29
steps:
30
+ - name: Debug Actor
31
+ run: echo "Actor ${{ github.actor }}"
32
+ - name: Debug Event
33
+ run: echo "Event ${{ github.event_name }}"
34
- name: approve
35
run: gh pr review --approve "$PR_URL"
36
- name: merge
0 commit comments