Fix all actionlint errors across workflow files#459
Merged
Conversation
- cli-build.yml: remove merge conflict markers, use matrix strategy, keep diagnostics step
- check-models.yml: quote $GITHUB_OUTPUT, use grep -c instead of grep|wc -l
- cli-publish.yml: group redirects with { } >> file (SC2129)
- copilot-setup-steps.yml: convert ARGS string to bash array (SC2086)
- release.yml: quote $GITHUB_OUTPUT/$GITHUB_STEP_SUMMARY, group redirects, use find instead of ls
- sync-release-notes.yml: quote $GITHUB_OUTPUT
- sync-toolnames.yml: quote ${GITHUB_WORKSPACE} and $GITHUB_OUTPUT
- validate-skills.yml: quote $GITHUB_OUTPUT
Co-authored-by: rajbos <6085745+rajbos@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
rajbos
March 22, 2026 04:12
View session
rajbos
approved these changes
Mar 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Merge conflict markers were left in
cli-build.ymlfrom a prior merge, breaking YAML parsing. Additionally, shellcheck flagged quoting and style issues across 7 other workflow files.Critical
cli-build.yml: Remove<<<<<<</=======/>>>>>>>conflict markers. Resolve in favor of matrix strategy ([18, 20, 22]) and retain the diagnostics validation step from the feature branch.Shellcheck fixes
$GITHUB_OUTPUT,$GITHUB_STEP_SUMMARY,${GITHUB_WORKSPACE}acrosscheck-models,release,sync-release-notes,sync-toolnames,validate-skillsgrep | wc -l→grep -cincheck-models.yml>> fileredirects →{ … } >> fileblocks incli-publish.yml,release.ymlls *.vsix→find . -maxdepth 1 -name "*.vsix"inrelease.yml$ARGS→ bash array"${ARGS[@]}"incopilot-setup-steps.yml:actionlintpasses clean after these changes.