fix(automation): ASCII log prefix to avoid console encoding garble
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
8b6d4e8ea6
commit
2a9d4f08fa
1 changed files with 1 additions and 1 deletions
|
|
@ -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``."
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue