From bf9c57aeac7c9d03a382cc7bfb54cc41ddaf1f27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 25 Mar 2024 00:15:12 +0000 Subject: ci: allow "FUTURE" PR title (#23064) Allows to use `BREAKING` prefix in the PR title. This change will allow us to land PRs that change behavior with `DENO_FUTURE=1` env var, and prepare for Deno 2.0 release. --- tools/verify_pr_title.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools') diff --git a/tools/verify_pr_title.js b/tools/verify_pr_title.js index db3f23061..3f7f7be03 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))) { -- cgit v1.2.3