From c200c7aff93465f7cda73e975c516adb6667fe9f Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Sat, 27 Dec 2025 16:28:22 -0800 Subject: [PATCH] Tweak message --- entry | 4 ++-- mcp/comment.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/entry b/entry index c880c19..d9430aa 100755 --- a/entry +++ b/entry @@ -98650,8 +98650,8 @@ async function ensureProgressCommentUpdated(payload) { return; } const runId = process.env.GITHUB_RUN_ID; - const workflowRunLink = runId ? `[workflow](https://github.com/${repoContext.owner}/${repoContext.name}/actions/runs/${runId})` : "workflow"; - const errorMessage = `\u274C this run croaked + const workflowRunLink = runId ? `[workflow run logs](https://github.com/${repoContext.owner}/${repoContext.name}/actions/runs/${runId})` : "workflow run logs"; + const errorMessage = `This run croaked \u{1F635} The workflow encountered an error before any progress could be reported. Please check the ${workflowRunLink} for details.`; const body = payload ? await addFooter(errorMessage, payload, octokit) : errorMessage; diff --git a/mcp/comment.ts b/mcp/comment.ts index dcbbf8d..6999aff 100644 --- a/mcp/comment.ts +++ b/mcp/comment.ts @@ -363,10 +363,10 @@ export async function ensureProgressCommentUpdated(payload?: Payload): Promise