diff --git a/tools/verify_pr_title.js b/tools/verify_pr_title.js index db3f23061a..3f7f7be03b 100644 --- a/tools/verify_pr_title.js +++ b/tools/verify_pr_title.js @@ -33,6 +33,9 @@ const validPrefixes = [ "Reland ", // Allow landing breaking changes that are properly marked "BREAKING", + // Allow landing breaking changes that will be applied in Deno 2, or available + // immediately with DENO_FUTURE=1 env var + "FUTURE", ]; if (validPrefixes.some((prefix) => prTitle.startsWith(prefix))) {