From 006a53c83d8df5b32acb833349637f055e8d6237 Mon Sep 17 00:00:00 2001 From: Carsten Bach Date: Mon, 29 Jul 2024 00:16:32 +0200 Subject: [PATCH] TRY to fix md rendering --- .github/scripts/create-preview-links.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/create-preview-links.js b/.github/scripts/create-preview-links.js index 601392cd8..e713b8480 100644 --- a/.github/scripts/create-preview-links.js +++ b/.github/scripts/create-preview-links.js @@ -139,12 +139,12 @@ async function createPreviewLinksComment(github, context) { title: playground.name, url: playground.url + blueprint })); - const previewLinks = links.map(link => (`- [${link.title}](${link.url})\n`)); + const previewLinks = links.map(link => (`- [${link.title}](${link.url})`)); const title = '### Preview changes with Playground'; const comment = ` You can preview the least recent changes for PR#${context.payload.pull_request.number} by following one of the links below: -${previewLinks} +${previewLinks.join('\n')} - [Download .zip with build changes](${zipArtifactUrl})