fix(app): handle error while parsing commit
All checks were successful
🚀 Lint & Test & Deploy / release (push) Successful in 3m53s

This commit is contained in:
release-bot
2026-02-08 21:01:34 +01:00
parent e44b73bebf
commit 9271d3a7e4

View File

@@ -52,7 +52,7 @@
const match = line.match(regex); const match = line.match(regex);
if (!match) { if (!match) {
throw new Error('Invalid commit line format'); return;
} }
const [, sha, link, description] = match; const [, sha, link, description] = match;