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;