From 3161337ead2ddf648dc438e8975129a2591bc53e Mon Sep 17 00:00:00 2001 From: Pedro Gomes Date: Sun, 19 Jul 2026 18:35:06 +0100 Subject: [PATCH] fix(action): show the cubit logo in the no-data fallback comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fallback comment (posted when compare finds no benchmark output) used a plain "## cubit — performance" header, unlike the normal report which carries the logo. Match report.go's header so every cubit PR comment shows the logo, consistent with bulwark. Claude-Session: https://claude.ai/code/session_016pTq6aVBJvTtXmwTgKw2Yh --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 1f2f419..8dc3f0e 100644 --- a/action.yml +++ b/action.yml @@ -123,7 +123,7 @@ runs: --commit "$PR_HEAD_SHA" --branch "$PR_HEAD_REF" \ --threshold "$THRESHOLD" "${dash_arg[@]}" \ --out "$report"; then - printf '## cubit — performance\n\n⚠️ cubit could not produce a report — no benchmark output was found at `%s` (did the benchmark step run?).\n' "$DIR" > "$report" + printf '## cubit — performance\n\n⚠️ cubit could not produce a report — no benchmark output was found at `%s` (did the benchmark step run?).\n' "$DIR" > "$report" fi # Render the standalone trend dashboard for the run artifact # (best-effort — a missing state branch just yields an empty page).