From be7380672da2f9109a047b00f259f70ff84f8101 Mon Sep 17 00:00:00 2001 From: shubham Date: Sun, 12 Sep 2021 13:02:35 +0530 Subject: [PATCH] chore(version): add develop as an exception Signed-off-by: shubham --- pkg/version/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/version/util.go b/pkg/version/util.go index a9c48ed1..75a02b34 100644 --- a/pkg/version/util.go +++ b/pkg/version/util.go @@ -23,7 +23,7 @@ var ( minCurrentVersion = "1.10.0" validDesiredVersion = strings.Split(GetVersion(), "-")[0] // these are the versions used in various pipelines for ci testing - exceptions = []string{"master"} + exceptions = []string{"master", "develop"} ) // IsCurrentVersionValid verifies if the current version is valid or not