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 febe8c7 commit a9298c9Copy full SHA for a9298c9
.github/workflows/dependabot_pr.yml
@@ -7,7 +7,7 @@ jobs:
7
permissions:
8
pull-requests: write
9
contents: write
10
- if: ${{ github.actor == 'dependabot[bot]' }}
+ if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
11
steps:
12
- name: GitHub App token
13
id: github_app_token
.github/workflows/pull-request-checks.yml
@@ -18,7 +18,7 @@ jobs:
18
runs-on: ubuntu-latest
19
20
- uses: peternied/check-pull-request-description-checklist@v1.1
21
- if: github.actor != 'dependabot[bot]'
+ if: github.event.pull_request.user.login != 'dependabot[bot]'
22
with:
23
checklist-items: |
24
New functionality includes testing.
0 commit comments