From 8efda832e2c2a5652a0229ee6628ff704d39285f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 16 Mar 2023 18:42:29 -0400 Subject: chore(ci): allow 'BREAKING' PR title prefix (#18238) So that we can land PRs like https://github.com/denoland/deno/pull/18237 or https://github.com/denoland/deno/pull/18094 --- tools/verify_pr_title.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tools') 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))) { -- cgit v1.2.3