- recompile dist

This commit is contained in:
Mike Penz
2023-02-18 11:50:48 +00:00
committed by GitHub
parent d57383d1e2
commit 63a38717ce
2 changed files with 7 additions and 3 deletions
Generated Vendored
+6 -2
View File
@@ -1850,14 +1850,18 @@ function buildChangelog(diffInfo, prs, options) {
let changelog = '';
for (const [category, pullRequests] of categorized) {
if (pullRequests.length > 0) {
changelog = `${changelog + category.title}\n\n`;
if (category.title) {
changelog = `${changelog + category.title}\n\n`;
}
for (const pr of pullRequests) {
changelog = `${changelog + pr}\n`;
}
changelog = `${changelog}\n`; // add space between sections
}
else if (category.empty_content !== undefined) {
changelog = `${changelog + category.title}\n\n`;
if (category.title) {
changelog = `${changelog + category.title}\n\n`;
}
changelog = `${changelog + category.empty_content}\n\n`;
}
}
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long