From 335e18fe987f7e819ee4d102bda55fe9f8631fd6 Mon Sep 17 00:00:00 2001 From: koenkk Date: Thu, 1 Feb 2024 22:02:01 +0100 Subject: [PATCH] chore: fix release-please --- scripts/generateChangelog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generateChangelog.js b/scripts/generateChangelog.js index 00d443b9b..4570410ef 100644 --- a/scripts/generateChangelog.js +++ b/scripts/generateChangelog.js @@ -100,7 +100,7 @@ for (const changelog of changelogs) { } else if (line === '# Changelog' || line === '### ⚠ BREAKING CHANGES' || !line) { continue; } else { - throw new Error(`Unmatched line: ${line}`); + changes['error'].push(`Unmatched line: ${line}`); } } }