Objective
Update the run-failure safe-outputs message in .github/workflows/cloclo.md to include an actionable link to run logs, so users know what to do when the workflow fails.
Context
Analysis from discussion #30179 identified that the cloclo failure message is charming but non-actionable:
run-failure: "🎵 Intermission... [{workflow_name}]({run_url}) {status}. The show must go on... eventually!"
Users seeing this in a PR comment have no clear next step. The breaking-change-checker workflow is a good counter-example — its failure message names what is unknown and implicitly guides users.
Approach
- Open
.github/workflows/cloclo.md
- Find the
run-failure: line (around line 36)
- Replace
"The show must go on... eventually!" with "Check the [run logs]({run_url}) for details."
- Run
make recompile to regenerate the compiled lock file
Files to Modify
.github/workflows/cloclo.md — update run-failure message
.github/workflows/cloclo.lock.yml — regenerated via make recompile
Proposed Change
Before:
run-failure: "🎵 Intermission... [{workflow_name}]({run_url}) {status}. The show must go on... eventually!"
After:
run-failure: "🎵 Intermission... [{workflow_name}]({run_url}) {status}. Check the [run logs]({run_url}) for details."
Acceptance Criteria
Generated by Plan Command for issue #discussion #30179 · ● 1.9M · ◷
Objective
Update the
run-failuresafe-outputs message in.github/workflows/cloclo.mdto include an actionable link to run logs, so users know what to do when the workflow fails.Context
Analysis from discussion #30179 identified that the cloclo failure message is charming but non-actionable:
Users seeing this in a PR comment have no clear next step. The
breaking-change-checkerworkflow is a good counter-example — its failure message names what is unknown and implicitly guides users.Approach
.github/workflows/cloclo.mdrun-failure:line (around line 36)"The show must go on... eventually!"with"Check the [run logs]({run_url}) for details."make recompileto regenerate the compiled lock fileFiles to Modify
.github/workflows/cloclo.md— updaterun-failuremessage.github/workflows/cloclo.lock.yml— regenerated viamake recompileProposed Change
Before:
After:
Acceptance Criteria
run-failuremessage incloclo.mdincludes an explicit link to run logsmake recompilerun and.lock.ymlupdated