@@ -74,22 +74,22 @@ jobs:
7474 - name : Detect ESLint coding standard violations
7575 if : >
7676 github.event.pull_request.head.repo.fork == true ||
77- github.event.pull_request.user.login == 'dependabot'
77+ github.event.pull_request.user.login == 'dependabot[bot] '
7878 run : npm run lint:js
7979
8080 - name : Generate ESLint coding standard violations report
8181 # Prevent generating the ESLint report if PR is from a fork or authored by Dependabot.
8282 if : >
8383 ! ( github.event.pull_request.head.repo.fork == true ||
84- github.event.pull_request.user.login == 'dependabot' )
84+ github.event.pull_request.user.login == 'dependabot[bot] ' )
8585 run : npm run lint:js:report
8686 continue-on-error : true
8787
8888 - name : Annotate code linting results
8989 # The action cannot annotate the PR when run from a PR fork or was authored by Dependabot.
9090 if : >
9191 ! ( github.event.pull_request.head.repo.fork == true ||
92- github.event.pull_request.user.login == 'dependabot' )
92+ github.event.pull_request.user.login == 'dependabot[bot] ' )
93939494 with :
9595 repo-token : ' ${{ secrets.GITHUB_TOKEN }}'
@@ -213,7 +213,7 @@ jobs:
213213 if : >
214214 github.event.pull_request.draft == false &&
215215 github.event.pull_request.head.repo.fork == false &&
216- github.event.pull_request.user.login != 'dependabot'
216+ github.event.pull_request.user.login != 'dependabot[bot] '
217217 runs-on : ubuntu-latest
218218 outputs :
219219 branch-name : ${{ steps.retrieve-branch-name.outputs.branch_name }}
0 commit comments