chore(repo): Improve formatting of server entries in release notes (#3134)

This commit is contained in:
Eric Allam
2026-02-26 11:59:47 +00:00
committed by GitHub
parent 4451fcb84c
commit 5612383684
+5 -1
View File
@@ -302,7 +302,11 @@ function formatPrBody({ version, packageEntries, serverEntries, rawBody }) {
"These changes affect the self-hosted Docker image and Trigger.dev Cloud:"
);
lines.push("");
for (const entry of allServer) lines.push(`- ${entry.text}`);
for (const entry of allServer) {
// Indent continuation lines so multi-line entries stay inside the list item
const indented = entry.text.replace(/\n/g, "\n ");
lines.push(`- ${indented}`);
}
lines.push("");
}