diff --git a/tools/verify_pr_title.js b/tools/verify_pr_title.js index be877bbfd8..01c47636a4 100644 --- a/tools/verify_pr_title.js +++ b/tools/verify_pr_title.js @@ -28,6 +28,8 @@ const validPrefixes = [ // allow Revert PRs because it allows us to remove the landed // commit from the generated changelog "Revert ", + // Allow landing breaking changes that are properly marked + "BREAKING", ]; if (validPrefixes.some((prefix) => prTitle.startsWith(prefix))) {