From 9bbd0cc8e2b6d014066ac6a39b588f84a664809c Mon Sep 17 00:00:00 2001 From: Johnny Bieren Date: Thu, 22 Feb 2024 18:55:38 -0500 Subject: [PATCH] chore: update relSvcCatalog revision (#1052) When release-service PRs run, they should run with the development branch in case a recently merged breaking change was merged as part of a breaking change in the catalog repo that was paired with the release-service PR. Signed-off-by: Johnny Bieren --- magefiles/magefile.go | 1 + 1 file changed, 1 insertion(+) diff --git a/magefiles/magefile.go b/magefiles/magefile.go index 454c0fa9d..85ec43146 100644 --- a/magefiles/magefile.go +++ b/magefiles/magefile.go @@ -354,6 +354,7 @@ func setRequiredEnvVars() error { envVarPrefix = "RELEASE_SERVICE" imageTagSuffix = "release-service-image" testSuiteLabel = "release-service" + os.Setenv(fmt.Sprintf("%s_CATALOG_REVISION", envVarPrefix), "development") case strings.Contains(jobName, "integration-service"): requiresSprayProxyRegistering = true envVarPrefix = "INTEGRATION_SERVICE"