Fix Discord message rendering: remove stray blockquote character
Some checks failed
CI / test (pull_request) Has been cancelled

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 <noreply@anthropic.com>
This commit is contained in:
Corey Johnson 2026-03-10 10:02:17 -07:00
parent 1f386df256
commit d12ee5c52d

View File

@ -116,8 +116,8 @@ class PRHandler {
let message = `
> ### [${pullRequest.title}](<${pullRequest.html_url}>)
> **${repositoryFullName}**
>
${body
>
${body
.split("\n")
.map((line) => `> ${line}`)
.join("\n")}