From 495c6da890dcb0929d9626ff05ae36ff76e9b828 Mon Sep 17 00:00:00 2001 From: Andrew Shu Date: Tue, 8 Jul 2025 06:48:48 -0700 Subject: [PATCH] Update GitLab CI to run on staging-* and develop-* versioned branches --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c677a35..97c7ac1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,8 +3,8 @@ workflow: - if: $CI_PIPELINE_SOURCE == 'merge_request_event' - if: $CI_COMMIT_TAG - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - - if: $CI_COMMIT_BRANCH == 'staging' - - if: $CI_COMMIT_BRANCH == 'develop' + - if: $CI_COMMIT_BRANCH =~ /^staging-/ + - if: $CI_COMMIT_BRANCH =~ /^develop-/ default: image: docker:27.4.1