fix(automation): ASCII log prefix to avoid console encoding garble

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Hardik 2026-06-11 16:50:02 +05:30
parent 8b6d4e8ea6
commit 2a9d4f08fa

View file

@ -110,7 +110,7 @@ if (-not (Test-Path (Join-Path $cfg.workDir '.git'))) {
foreach ($issue in $queued) { foreach ($issue in $queued) {
$n = $issue.number $n = $issue.number
$branch = "$($cfg.branchPrefix)$n" $branch = "$($cfg.branchPrefix)$n"
Log "── Working issue #${n}: $($issue.title)" Log "-- Working issue #${n}: $($issue.title)"
Set-IssueLabels $n -Remove @('claude-queue', 'claude-failed') -Add @('claude-working') Set-IssueLabels $n -Remove @('claude-queue', 'claude-failed') -Add @('claude-working')
Add-IssueComment $n "🤖 Claude has started working on this issue on branch ``$branch``." Add-IssueComment $n "🤖 Claude has started working on this issue on branch ``$branch``."