(value)
| 1361 | if (job.goalNoProgressReason) |
| 1362 | lines.push("## No-progress guard", "", String(job.goalNoProgressReason), ""); |
| 1363 | if (job.goalAcceptance?.length) |
| 1364 | lines.push("## Acceptance criteria", "", ...job.goalAcceptance.map((item) => `- ${item}`), ""); |
| 1365 | if (job.lastGoalChecks?.length) { |
| 1366 | lines.push("## Latest checks", ""); |
| 1367 | for (const item of job.lastGoalChecks) |
| 1368 | lines.push(`- ${item.command}: exit ${item.code}`); |
no outgoing calls
no test coverage detected