default unknown keys to rscadd (#8543)

This commit is contained in:
Kashargul
2024-06-19 18:02:37 -04:00
committed by GitHub
parent 2433714495
commit 2b3d26df62
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ function parseChangelogBody(lines, openTag) {
if (match) {
const [_, type, description] = match;
const entry = CHANGELOG_KEYS_TO_ENTRY[type];
const entry = CHANGELOG_KEYS_TO_ENTRY[type] || CHANGELOG_KEYS_TO_ENTRY["rscadd"];
if (entry.placeholders.includes(description)) {
continue;