From d12ee5c52dfe7def7a504764d2f92eaafee1fc0c Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Tue, 10 Mar 2026 10:02:17 -0700 Subject: [PATCH] Fix Discord message rendering: remove stray blockquote character The empty blockquote line after the repo name was rendering as a literal ">" in Discord. Add a trailing space so it renders as a blank line within the blockquote instead. Co-Authored-By: Claude Haiku 4.5 --- packages/spike/src/bridge/webhook-handler.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/spike/src/bridge/webhook-handler.ts b/packages/spike/src/bridge/webhook-handler.ts index c58601b..cbcbc9f 100644 --- a/packages/spike/src/bridge/webhook-handler.ts +++ b/packages/spike/src/bridge/webhook-handler.ts @@ -116,8 +116,8 @@ class PRHandler { let message = ` > ### [${pullRequest.title}](<${pullRequest.html_url}>) > **${repositoryFullName}** - > - ${body +> +${body .split("\n") .map((line) => `> ${line}`) .join("\n")}