diff options
-rw-r--r-- | tools/verify_pr_title.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/verify_pr_title.js b/tools/verify_pr_title.js index be877bbfd..01c47636a 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))) { |