Skip to content

Commit b6361ee

Browse files
committed
Chrore: Trim commit tag to include it in release
1 parent 941e2e0 commit b6361ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release/tasks/update-changelogs.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const generateChangelogSection = async (title: string, tags: string[], commits:
6868
let result = '';
6969

7070
for (const commit of commits) {
71-
if (tags.includes(commit.tag)) {
71+
if (tags.includes(commit.tag.trim())) {
7272
result += `${await prettyPrintCommit(commit)}\n`;
7373
}
7474
}

0 commit comments

Comments
 (0)