From 31f0a9be3f858dfdca112a2839fbf5741f70ba34 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 5 Feb 2025 19:03:14 +0100 Subject: [PATCH] ci: don't run on tag pipelines It's too late to run all the tests by then, the release has been made based on the staging pipelines results Cc: mesa-stable Reviewed-by: Martin Roukala Reviewed-by: Dylan Baker Part-of: --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 32683aa5051..21043bc65b8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,6 +30,10 @@ workflow: # do not duplicate pipelines on merge pipelines - if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push" when: never + # tag pipelines are disabled as it's too late to run all the tests by + # then, the release has been made based on the staging pipelines results + - if: $CI_COMMIT_TAG + when: never # merge pipeline - if: &is-merge-attempt $GITLAB_USER_LOGIN == "marge-bot" && $CI_PIPELINE_SOURCE == "merge_request_event" variables: