We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30cca8b commit 7f1fbf8Copy full SHA for 7f1fbf8
scripts/claude.mjs
@@ -3656,7 +3656,7 @@ Commit the changes now.`
3656
3657
// Keep logs under 2000 chars to avoid context issues
3658
const truncatedLogs = filteredLogs.length > 2000
3659
- ? filteredLogs.substring(0, 2000) + '\n... (truncated)'
+ ? `${filteredLogs.substring(0, 2000)}\n... (truncated)`
3660
: filteredLogs
3661
3662
const fixPrompt = `Fix CI failure in "${job.name}" (run ${lastRunId}, commit ${currentSha.substring(0, 7)}).
0 commit comments