From d05be016cee17c28bf758db3c19c444ab2e07b37 Mon Sep 17 00:00:00 2001 From: Elliot DeNolf Date: Fri, 23 Aug 2024 16:25:50 -0400 Subject: [PATCH] ci(scripts): emoji release notes --- scripts/utils/updateChangelog.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/utils/updateChangelog.ts b/scripts/utils/updateChangelog.ts index 1b9d60e68..2ac86df04 100755 --- a/scripts/utils/updateChangelog.ts +++ b/scripts/utils/updateChangelog.ts @@ -87,13 +87,13 @@ export const updateChangelog = async (args: Args = {}): Promise // Might need to swap out HEAD for the new proposed version let changelog = `## [${proposedReleaseVersion}](https://github.com/payloadcms/payload/compare/${fromVersion}...${proposedReleaseVersion}) (${yyyyMMdd})\n\n\n` if (sections.feat.length) { - changelog += `### Features\n\n${sections.feat.join('\n')}\n\n` + changelog += `### 🚀 Features\n\n${sections.feat.join('\n')}\n\n` } if (sections.fix.length) { - changelog += `### Bug Fixes\n\n${sections.fix.join('\n')}\n\n` + changelog += `### 🐛 Bug Fixes\n\n${sections.fix.join('\n')}\n\n` } if (sections.breaking.length) { - changelog += `### BREAKING CHANGES\n\n${sections.breaking.join('\n')}\n\n` + changelog += `### ⚠️ BREAKING CHANGES\n\n${sections.breaking.join('\n')}\n\n` } if (writeChangelog) {