Skip to content

Commit

Permalink
Update release draft script for breaking PRs (moonbeam-foundation#2462)
Browse files Browse the repository at this point in the history
* Update release draft script for breaking PRs

Changes the label used to identify breaking PRs

* Also update client draft
  • Loading branch information
crystalin authored Sep 25, 2023
1 parent b08aa99 commit 96ac757
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/github/generate-release-body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import yargs from "yargs";
import { getCommitAndLabels, getCompareLink } from "./github-utils";

const BINARY_CHANGES_LABEL = "B5-clientnoteworthy";
const BREAKING_CHANGES_LABEL = "D2-breaksapi";
const BREAKING_CHANGES_LABEL = "breaking";

function capitalize(s) {
return s[0].toUpperCase() + s.slice(1);
Expand Down
2 changes: 1 addition & 1 deletion tools/github/generate-runtimes-body.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import path from "path";
import { getCommitAndLabels, getCompareLink } from "./github-utils";
import { blake2AsHex } from "@polkadot/util-crypto";

const BREAKING_CHANGES_LABEL = "D2-breaksapi";
const BREAKING_CHANGES_LABEL = "breaking";
const RUNTIME_CHANGES_LABEL = "B7-runtimenoteworthy";
// `ParachainSystem` is pallet index 6. `authorize_upgrade` is extrinsic index 2.
const MOONBASE_PREFIX_PARACHAINSYSTEM_AUTHORIZE_UPGRADE = "0x0602";
Expand Down

0 comments on commit 96ac757

Please sign in to comment.