Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
# If you do not check out your code, Copilot will do this for you.
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.2.2
with:
submodules: 'true'
Copy link

Copilot AI Dec 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The submodules parameter should be a boolean value 'true' or 'false', or a string specifying the checkout strategy ('recursive'). While the string 'true' will work, it's more idiomatic in GitHub Actions to use the boolean true without quotes, or use 'recursive' to explicitly check out all nested submodules. Looking at other workflows in the repository (e.g., validate-npm-package-lock-json.yml uses submodules: false), the convention is to use boolean values without quotes.

Suggested change
submodules: 'true'
submodules: true

Copilot uses AI. Check for mistakes.

# Include PrepareForHelix to maximise what is downloaded here
- name: Build solution
Expand Down