fix(ci): avoid SC2006 backticks in pack-verify node script comment#375
Merged
Conversation
The routine-setup required-file comment added in #372 used backticks around `radar init --with-routines` inside the `node -e "..."` double-quoted shell string, which shellcheck (via actionlint) flags as SC2006 (legacy command substitution). Switch to single quotes so the "Lint (Actions)" CI step passes again. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
ozzy-3
pushed a commit
that referenced
this pull request
May 25, 2026
🤖 I have created a release *beep* *boop* --- ## [0.2.5](v0.2.4...v0.2.5) (2026-05-25) ### Features * **routine:** hint /routine-setup skill from generate output ([#373](#373)) ([d045b46](d045b46)) * **routine:** routine-setup skill 本体+init 配布 ([#372](#372)) ([e67f29c](e67f29c)) * **routine:** single-source bootstrap prompt and add --emit-bootstrap-prompt ([#370](#370)) ([481de45](481de45)) ### Bug Fixes * **ci:** avoid SC2006 backticks in pack-verify node script comment ([#375](#375)) ([fc7dae4](fc7dae4)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.
背景
epic #363 の #372 が
.github/workflows/ci.yamlの pack-verify インラインスクリプト(node --input-type=module -e "...")のコメントに`radar init --with-routines`とバッククォートを追加した。これは二重引用符シェル文字列内のバッククォート=レガシーコマンド置換とみなされ、shellcheck (actionlint 経由) が SC2006 で fail する。auto-merge は CI を gate しないため、#372・#373・#374 は
Lint (Actions)失敗のままマージされ、main の CI が red になっていた。修正
当該コメントのバッククォートをシングルクォートに変更(JS コメント内なので構文影響なし、二重引用符シェル文字列内のシングルクォートは literal)。
検証
actionlint: PASS(修正前は SC2006 で fail)yamllint: ok🤖 Generated with Claude Code