Skip to content

Commit 5ace21f

Browse files
committed
build: add missing step to checkout repository
--- 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 5c1bb3c commit 5ace21f

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/pr_commands_comment.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,16 @@ jobs:
6363

6464
# Define the sequence of job steps...
6565
steps:
66+
# Checkout the repository:
67+
- name: 'Checkout repository'
68+
# Pin action to full length commit SHA
69+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
70+
with:
71+
# Ensure we have access to the scripts directory:
72+
sparse-checkout: |
73+
.github/workflows/scripts
74+
sparse-checkout-cone-mode: false
75+
timeout-minutes: 10
6676

6777
# Leave comment with package make command instructions:
6878
- name: 'Leave comment with package make command instructions'

0 commit comments

Comments
 (0)