Skip to content

Commit

Permalink
TRY to fix md rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
carstingaxion committed Jul 28, 2024
1 parent 5042f3d commit 006a53c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/create-preview-links.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 <code>.zip</code> with build changes](${zipArtifactUrl})
Expand Down

0 comments on commit 006a53c

Please sign in to comment.