Skip to content

Commit

Permalink
disable changelog generation (#2581)
Browse files Browse the repository at this point in the history
  • Loading branch information
noandrea authored Nov 28, 2023
1 parent 17033e8 commit 38fadef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tools/github/generate-release-body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ async function main() {
const previousTag = argv.from;
const newTag = argv.to;

const moduleLinks = ["substrate", "polkadot", "cumulus", "frontier"].map((repoName) => ({
// TODO: this section should be optional with default to ["polkadot-sdk", "frontier"]
const moduleLinks = [].map((repoName) => ({
name: repoName,
link: getCompareLink(repoName, previousTag, newTag),
}));
Expand Down
3 changes: 2 additions & 1 deletion tools/github/generate-runtimes-body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ async function main() {
getRuntimeInfo(argv["srtool-report-folder"], runtimeName)
);

const moduleLinks = ["substrate", "polkadot", "cumulus", "frontier"].map((repoName) => ({
// TODO: this section should be optional with default to ["polkadot-sdk", "frontier"]
const moduleLinks = [].map((repoName) => ({
name: repoName,
link: getCompareLink(repoName, previousTag, newTag),
}));
Expand Down

0 comments on commit 38fadef

Please sign in to comment.