Skip to content

Commit 7b6f35a

Browse files
committed
build: add missing checkout step
--- 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 cfd1917 commit 7b6f35a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/first_time_greeting.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,17 @@ jobs:
4242
# Define the sequence of job steps...
4343
steps:
4444

45+
# Checkout the repository:
46+
- name: 'Checkout repository'
47+
# Pin action to full length commit SHA
48+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
49+
with:
50+
# Ensure we have access to the scripts directory:
51+
sparse-checkout: |
52+
.github/workflows/scripts
53+
sparse-checkout-cone-mode: false
54+
timeout-minutes: 10
55+
4556
# Greet first-time contributors:
4657
- name: 'Greet first-time contributors'
4758
env:

0 commit comments

Comments
 (0)