summaryrefslogtreecommitdiff
path: root/tools/verify_pr_title.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/verify_pr_title.js')
-rw-r--r--tools/verify_pr_title.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/verify_pr_title.js b/tools/verify_pr_title.js
index 98cc30aa7..90a045d3f 100644
--- a/tools/verify_pr_title.js
+++ b/tools/verify_pr_title.js
@@ -51,9 +51,6 @@ 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))) {