From 7970585d7505d70aaf530a2623eb52546316d43d Mon Sep 17 00:00:00 2001 From: Jannik Hollenbach Date: Thu, 5 Dec 2024 17:32:48 +0100 Subject: [PATCH] Adjust release note grouper for release notes generated by the native github feature Signed-off-by: Jannik Hollenbach --- bin/release-note-grouper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/release-note-grouper.js b/bin/release-note-grouper.js index 164d61789c..e922fc0efc 100755 --- a/bin/release-note-grouper.js +++ b/bin/release-note-grouper.js @@ -45,7 +45,7 @@ let upgrades = {}; rl.on("line", (line) => { // Extract information from each line const match = line.match( - /\[SCB-Bot\] Upgraded (\w+) from ([\w\.]+) to ([\w\.]+) @secureCodeBoxBot \((#\d+)\)/, + /.*\[SCB-Bot\] Upgraded (.+) from ([\w\.]+) to ([\w\.]+) by @secureCodeBoxBot in (.*)/, ); if (match) { const [, dependency, oldVersion, newVersion, pr] = match;