chore(scripts): release notes emoji

This commit is contained in:
Elliot DeNolf
2024-09-01 19:39:52 -04:00
parent 1130a581c0
commit 39cd8283c8

View File

@@ -126,9 +126,11 @@ export const updateChangelog = async (args: Args = {}): Promise<ChangelogResult>
async function createContributorSection(commits: GitCommit[]): Promise<string> {
const contributors = await getContributors(commits)
if (!contributors.length) return ''
if (!contributors.length) {
return ''
}
let contributorsSection = `### Contributors\n\n`
let contributorsSection = `### 🤝 Contributors\n\n`
for (const contributor of contributors) {
contributorsSection += `- ${contributor.name} (@${contributor.username})\n`