From 1940107ad6191069393ebba56d84a7f1ed692726 Mon Sep 17 00:00:00 2001 From: David Knaack Date: Fri, 22 May 2026 12:47:50 +0200 Subject: [PATCH] chore: Discover git-hashes in multi-line release notes --- scripts/add-changelog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/add-changelog.ts b/scripts/add-changelog.ts index ccb554c63a..c6513f734a 100644 --- a/scripts/add-changelog.ts +++ b/scripts/add-changelog.ts @@ -44,7 +44,7 @@ export async function embedCommitLinks( await Promise.all( lines.map(async line => { const match = line.match(SHORT_SHA_AT_LINE_END_RE); - if (!match || !line.trimStart().startsWith('- [')) { + if (!match) { return line; }