Skip to content

Commit

Permalink
fix client body generation
Browse files Browse the repository at this point in the history
  • Loading branch information
librelois committed Nov 28, 2023
1 parent 9c5bf9a commit 772b923
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tools/github/generate-release-body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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);
}
Expand Down

0 comments on commit 772b923

Please sign in to comment.