From f3e27ee070df19078e1291757dfabee285caab7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20C=2E=20R=C3=ADos?= Date: Tue, 12 Mar 2024 13:12:44 +0100 Subject: [PATCH] Making 2.2.x default branch --- scripts/set-pipelines.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/set-pipelines.sh b/scripts/set-pipelines.sh index fb1ca35..782dea6 100755 --- a/scripts/set-pipelines.sh +++ b/scripts/set-pipelines.sh @@ -10,7 +10,7 @@ readonly PIPELINE_TYPE=${1:-""} set_branch_pipeline() { local -r pipeline_name="app-broker${PIPELINE_NAME_SUFFIX:+"-$PIPELINE_NAME_SUFFIX"}" - local -r branches=("main" "2.1.x" "2.0.x" "1.6.x" "1.5.x") + local -r branches=("2.2.x" "2.1.x" "2.0.x" "1.6.x" "1.5.x") for branch in "${branches[@]}"; do echo "Setting $pipeline_name $branch pipeline..." @@ -33,7 +33,7 @@ set_pr_manager_pipeline() { fly --target "$FLY_TARGET" set-pipeline --pipeline "$pipeline_name" \ --config pr-manager-pipeline.yml \ --load-vars-from config-concourse.yml \ - --var ci-image-tag="main" \ + --var ci-image-tag="2.2.x" \ --var pipeline-name="$pipeline_name" }