From da1d0d81c2ceca1b76f836a89fe9d63612b91c55 Mon Sep 17 00:00:00 2001 From: koenkk Date: Thu, 1 Feb 2024 22:03:28 +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 4570410ef..218cb4594 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 { - changes['error'].push(`Unmatched line: ${line}`); + changes['error'].push(`- Unmatched line: ${line}`); } } }