Skip to content

Commit 57cf09d

Browse files
committed
build: do not run workflow for dependabot PRs
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 99288f7 commit 57cf09d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/first_time_greeting.yml

+6
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ jobs:
4343
# Define the type of virtual host machine:
4444
runs-on: ubuntu-latest
4545

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+
4652
# Define the sequence of job steps...
4753
steps:
4854

0 commit comments

Comments
 (0)