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 d847b9d commit 18c83e8Copy full SHA for 18c83e8
.github/workflows/too_many_good_first_prs.yml
@@ -34,8 +34,11 @@ jobs:
34
# Define job name:
35
name: 'Check if contributor has opened too many "Good First PRs"'
36
37
- # Only run this job if the pull request did not have label `automated-pr`:
38
- if: contains(github.event.pull_request.labels.*.name, 'automated-pr') == false
+ # Only run this job if the pull request did not have label `automated-pr` and is not from bots:
+ if: >
39
+ contains(github.event.pull_request.labels.*.name, 'automated-pr') == false &&
40
+ github.event.pull_request.user.login != 'stdlib-bot' &&
41
+ github.event.pull_request.user.login != 'dependabot[bot]'
42
43
# Define job permissions:
44
permissions:
0 commit comments