We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 941e2e0 commit b6361eeCopy full SHA for b6361ee
release/tasks/update-changelogs.ts
@@ -68,7 +68,7 @@ const generateChangelogSection = async (title: string, tags: string[], commits:
68
let result = '';
69
70
for (const commit of commits) {
71
- if (tags.includes(commit.tag)) {
+ if (tags.includes(commit.tag.trim())) {
72
result += `${await prettyPrintCommit(commit)}\n`;
73
}
74
0 commit comments