spike, you are alive
Some checks failed
CI / test (push) Waiting to run
CI / test (pull_request) Has been cancelled

This commit is contained in:
Corey Johnson 2025-11-07 14:58:20 -08:00
parent 59d51c4be4
commit bff5aa05f5
2 changed files with 3 additions and 2 deletions

View File

@ -1,2 +1,3 @@
tmp
docs
docs
local-spike.db

View File

@ -16,7 +16,7 @@ export const listenForEvents = (client: Client) => {
// Check if this is a PR thread
const prData = getPRByDiscordThreadId(msg.channel.id)
if (prData) {
const message = `${mapDiscordUserToGitea(msg.author.username)}: ${msg.content}`
const message = `**${mapDiscordUserToGitea(msg.author.username)}**: ${msg.content}`
await createPRComment(prData, message, msg.id)
}