Compare commits

...

2 Commits

Author SHA1 Message Date
4fba215f21 Merge pull request 'Fix Discord message rendering' (#13) from probablycorey/fix-discord-message into main
Some checks are pending
CI / test (push) Waiting to run
Reviewed-on: #13
2026-03-10 17:09:28 +00:00
d12ee5c52d 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>
2026-03-10 10:02:17 -07:00

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")}