From 0c01b2d4e499163fbe29cf8f7e445498dcd1acdd Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Thu, 1 Aug 2024 14:56:34 -0400 Subject: [PATCH] build: remove inactive CE versions from being backport eligible (#23720) As of Nomad 1.8.0 LTS we're no longer backporting changes to Nomad CE versions 1.7.x and 1.6.x. We never got around to removing the flags in the file the backport assistant uses to control automated backports. --- .release/versions.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.release/versions.hcl b/.release/versions.hcl index 57141806c..895e6861e 100644 --- a/.release/versions.hcl +++ b/.release/versions.hcl @@ -11,9 +11,9 @@ active_versions { lts = true } version "1.7.x" { - ce_active = true + ce_active = false } version "1.6.x" { - ce_active = true + ce_active = false } }