summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-08-30 17:58:24 -0400
committerGitHub <noreply@github.com>2024-08-30 21:58:24 +0000
commitf891e73bbfc4a8f4f24039dd046c8d3de80e2c56 (patch)
treed3ca7e1163550cc7fee6d523269d6a3636218da0 /tools
parent55137c9db4ed7226a6a68256c3cb9fdad7ad7c83 (diff)
refactor: remove DENO_FUTURE (#25314)
Diffstat (limited to 'tools')
-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))) {