Skip to content

Commit 51c9019

Browse files
fix(workflow): escape PowerShell variable delimiter in ai-issue-triage (#294)
The colon after $issueNumber was being interpreted as a scope modifier (like $global:var). Changed to ${issueNumber}: to properly delimit the variable name. Fixes ParserError: Variable reference is not valid. ':' was not followed by a valid variable name character. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: rjmurillo[bot] <rjmurillo-bot@users.noreply.github.com> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 9364edd commit 51c9019

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ai-issue-triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ jobs:
566566
if (-not $hasTriageMarker) {
567567
# Get issue title for logging
568568
$issueTitle = gh issue view $issueNumber --json title --jq '.title' 2>$null
569-
Write-Host " Issue #$issueNumber: $issueTitle - NOT TRIAGED" -ForegroundColor Yellow
569+
Write-Host " Issue #${issueNumber}: $issueTitle - NOT TRIAGED" -ForegroundColor Yellow
570570
$untriagedIssues += $issueNumber
571571
}
572572
}

0 commit comments

Comments
 (0)