From 82761169f667556945763c561c67732721065ab1 Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Wed, 24 May 2023 23:37:40 -0400 Subject: [PATCH] fix: Link to intermediate changelog --- src/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.ts b/src/run.ts index 532396b0..6823ab81 100644 --- a/src/run.ts +++ b/src/run.ts @@ -265,7 +265,7 @@ ${changelogEntries await fs.writeFile(changelogPath, changelogBody); - const prBody = `See [${changelogPath}](https://github.com/backstage/backstage/blob/master/${changelogPath}) for more information.`; + const prBody = `See [${changelogPath}](https://github.com/backstage/backstage/blob/${versionBranch}/${changelogPath}) for more information.`; const finalPrTitle = `${prTitle}${!!preState ? ` (${preState.tag})` : ""}`;