Merge pull request #45 from mikepenz/feature/fix_uncategorized_log_message
Fix log message of uncategorized PR count
This commit is contained in:
+1
-1
@@ -976,7 +976,7 @@ function buildChangelog(prs, config) {
|
||||
for (const pr of uncategorized) {
|
||||
changelogUncategorized = `${changelogUncategorized + pr}\n`;
|
||||
}
|
||||
core.info(`✒️ Wrote ${changelogUncategorized.length} non categorized pull requests down`);
|
||||
core.info(`✒️ Wrote ${uncategorized.length} non categorized pull requests down`);
|
||||
// fill template
|
||||
let transformedChangelog = config.template || configuration_1.DefaultConfiguration.template;
|
||||
transformedChangelog = transformedChangelog.replace('${{CHANGELOG}}', changelog);
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -85,7 +85,7 @@ export function buildChangelog(
|
||||
changelogUncategorized = `${changelogUncategorized + pr}\n`
|
||||
}
|
||||
core.info(
|
||||
`✒️ Wrote ${changelogUncategorized.length} non categorized pull requests down`
|
||||
`✒️ Wrote ${uncategorized.length} non categorized pull requests down`
|
||||
)
|
||||
|
||||
// fill template
|
||||
|
||||
Reference in New Issue
Block a user