Skip to content

Commit 772b923

Browse files
committed
fix client body generation
1 parent 9c5bf9a commit 772b923

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tools/github/generate-release-body.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ async function main() {
4545
const previousTag = argv.from;
4646
const newTag = argv.to;
4747

48-
const moduleLinks = ["substrate", "polkadot", "cumulus", "frontier"].map((repoName) => ({
49-
name: repoName,
50-
link: getCompareLink(repoName, previousTag, newTag),
51-
}));
52-
5348
const { prByLabels } = await getCommitAndLabels(
5449
octokit,
5550
argv.owner,
@@ -75,7 +70,6 @@ ${filteredPr.map((pr) => `* ${printPr(pr)}`).join("\n")}
7570
## Dependency changes
7671
7772
Moonbeam: https://github.com/${argv.owner}/${argv.repo}/compare/${previousTag}...${newTag}
78-
${moduleLinks.map((modules) => `${capitalize(modules.name)}: ${modules.link}`).join("\n")}
7973
`;
8074
console.log(template);
8175
}

0 commit comments

Comments
 (0)