-
Notifications
You must be signed in to change notification settings - Fork 296
Closed
Closed
Copy link
Labels
Description
Objective
Fix a shellcheck error (SC2086 — unquoted variable) in the prompt-clustering-analysis workflow, identified by actionlint in discussion #19004.
Context
The prompt-clustering-analysis.lock.yml workflow has an unquoted variable expansion at line 372. SC2086 indicates a variable used without double quotes, which causes word-splitting or glob expansion bugs when the variable contains spaces or special characters.
Source: Static Analysis Report - 2026-03-01, actionlint SC2086 finding.
Approach
- Open
.github/workflows/prompt-clustering-analysis.md(source markdown file — do NOT edit the lock file directly) - Find the shell script step around the redirect path that uses an unquoted variable (e.g.,
$VARIABLEinstead of"$VARIABLE") - Quote the variable: change
$VAR→"$VAR"for the redirect path variable - Run
make recompileto regenerate the lock file - Run
make lintoractionlintto confirm the error is resolved
Files to Modify
.github/workflows/prompt-clustering-analysis.md— quote the unquoted shell variable.github/workflows/prompt-clustering-analysis.lock.yml— regenerated viamake recompile
Acceptance Criteria
- SC2086 error is gone from
prompt-clustering-analysis - Lock file regenerated without errors
-
make agent-finishpasses
Generated by Plan Command for issue #discussion #19004
- expires on Mar 3, 2026, 6:38 AM UTC
Reactions are currently unavailable