diff --git a/scripts/utils/updateChangelog.ts b/scripts/utils/updateChangelog.ts index d8d4e7b3d..371ba5e9b 100755 --- a/scripts/utils/updateChangelog.ts +++ b/scripts/utils/updateChangelog.ts @@ -184,7 +184,7 @@ type Contributor = { name: string; username: string } function formatCommitForChangelog(commit: GitCommit, includeBreakingNotes = false): string { const { scope, references, description, isBreaking } = commit - let formatted = `* ${scope ? `${scope}: ` : ''}${description}` + let formatted = `* ${scope ? `**${scope}:** ` : ''}${description}` references.forEach((ref) => { if (ref.type === 'pull-request') { // /issues will redirect to /pulls if the issue is a PR