Skip to content
Merged

Noenv #335

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: 1 addition & 1 deletion .github/workflows/run-codegen-pull-request-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Run codegen step
run: >-
dotnet run --project ./CreateMatrix/CreateMatrix.csproj --
dotnet run --project ./CreateMatrix/CreateMatrix.csproj --
matrix --versionpath=./Make/Version.json --matrixpath=./Make/Matrix.json --updateversion
Comment on lines 23 to 25

Copilot AI Feb 13, 2026

Copy link

Choose a reason for hiding this comment

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

The run: >- folded scalar will preserve a newline before the more-indented matrix ... line, which can cause the shell to execute matrix ... as a separate command (and fail). Keep both lines at the same indentation (so they fold into a single command), or switch to run: | with explicit \ line continuation / put the whole command on one line.

Copilot uses AI. Check for mistakes.

- name: Format code step
Expand Down