We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99288f7 commit 57cf09dCopy full SHA for 57cf09d
.github/workflows/first_time_greeting.yml
@@ -43,6 +43,12 @@ jobs:
43
# Define the type of virtual host machine:
44
runs-on: ubuntu-latest
45
46
+ # Only run this job if the pull request did not have label `automated-pr` and is not from bots:
47
+ if: >
48
+ contains(github.event.pull_request.labels.*.name, 'automated-pr') == false &&
49
+ github.event.pull_request.user.login != 'stdlib-bot' &&
50
+ github.event.pull_request.user.login != 'dependabot[bot]'
51
+
52
# Define the sequence of job steps...
53
steps:
54
0 commit comments