From e562ee21c8820d99007604cd930022816ce6c76c Mon Sep 17 00:00:00 2001 From: cyw Date: Thu, 12 Sep 2024 00:34:25 +0800 Subject: [PATCH] fix: fix comment at release pr is ugly (#2348) Co-authored-by: Jeff Ching --- src/manifest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manifest.ts b/src/manifest.ts index 10ac85748..341e7ff85 100644 --- a/src/manifest.ts +++ b/src/manifest.ts @@ -1240,7 +1240,7 @@ export class Manifest { const releaseList = githubReleases .map(({tagName, url}) => `- [${tagName}](${url})`) .join('\n'); - const comment = `:robot: Created releases:\n${releaseList}\n:sunflower:`; + const comment = `🤖 Created releases:\n\n${releaseList}\n\n:sunflower:`; await this.github.commentOnIssue(comment, pullRequest.number); }