From 89b4d85719a2dd22b76a84a44f3814d231870c89 Mon Sep 17 00:00:00 2001 From: Eric Allam Date: Thu, 26 Feb 2026 11:43:29 +0000 Subject: [PATCH] chore(repo): Improve formatting of server entries in release notes Indent continuation lines in the release notes for better readability. --- scripts/enhance-release-pr.mjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/enhance-release-pr.mjs b/scripts/enhance-release-pr.mjs index af8f8333b0..9621d2920f 100644 --- a/scripts/enhance-release-pr.mjs +++ b/scripts/enhance-release-pr.mjs @@ -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(""); }