- recompile dist

This commit is contained in:
Mike Penz
2023-08-25 09:53:22 +00:00
committed by GitHub
parent 6e2d9ccd46
commit 7e5b9d05c5
2 changed files with 4 additions and 4 deletions
Generated Vendored
+3 -3
View File
@@ -1254,7 +1254,7 @@ function buildRegex(regex, target, onProperty, method, onEmpty) {
};
}
catch (e) {
core.warning(`⚠️ Bad replacer regex: ${regex.pattern}`);
core.warning(`⚠️ Bad regex: ${regex.pattern} (${e})`);
return null;
}
}
@@ -2056,7 +2056,7 @@ function buildChangelog(diffInfo, origPrs, options) {
}
else {
if (!valid)
core.warning(`⚠️ Extracted reference 'isNaN': ${extracted}`);
core.debug(`⚠️ Extracted reference 'isNaN': ${extracted}`);
remappedPrs.push(pr);
}
}
@@ -2169,7 +2169,7 @@ function buildChangelog(diffInfo, origPrs, options) {
if (category.exhaustive_rules !== undefined) {
exhaustive_rules = category.exhaustive_rules;
}
if (matched && category.rules !== undefined) {
if ((matched || category.labels === undefined) && category.rules !== undefined) {
matched = (0, regexUtils_2.matchesRules)(category.rules, pr, exhaustive_rules);
}
}
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long