From 772b9239ed8c0f77c9a124e729c3c383e5cfb08d Mon Sep 17 00:00:00 2001 From: librelois Date: Tue, 28 Nov 2023 11:46:45 +0100 Subject: [PATCH] fix client body generation --- tools/github/generate-release-body.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tools/github/generate-release-body.ts b/tools/github/generate-release-body.ts index 4dc37b19e5..e00212efdb 100644 --- a/tools/github/generate-release-body.ts +++ b/tools/github/generate-release-body.ts @@ -45,11 +45,6 @@ async function main() { const previousTag = argv.from; const newTag = argv.to; - const moduleLinks = ["substrate", "polkadot", "cumulus", "frontier"].map((repoName) => ({ - name: repoName, - link: getCompareLink(repoName, previousTag, newTag), - })); - const { prByLabels } = await getCommitAndLabels( octokit, argv.owner, @@ -75,7 +70,6 @@ ${filteredPr.map((pr) => `* ${printPr(pr)}`).join("\n")} ## Dependency changes Moonbeam: https://github.com/${argv.owner}/${argv.repo}/compare/${previousTag}...${newTag} -${moduleLinks.map((modules) => `${capitalize(modules.name)}: ${modules.link}`).join("\n")} `; console.log(template); }