From c56528b450b8622cc99b8dd0da9b144bda4d6894 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 3 Jul 2023 17:37:46 +0100 Subject: [PATCH] ci: document workflow rules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Eric Engestrom Reviewed-by: Martin Roukala (né Peres) Reviewed-by: David Heidelberg Part-of: --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 608698602fb..61b7b2d0767 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,14 @@ workflow: rules: + # merge pipeline - if: $GITLAB_USER_LOGIN == "marge-bot" && $CI_COMMIT_BRANCH == null variables: MESA_CI_PERFORMANCE_ENABLED: 1 + # post-merge pipeline - if: $GITLAB_USER_LOGIN == "marge-bot" && $CI_COMMIT_BRANCH variables: LAVA_JOB_PRIORITY: 40 + # any other pipeline - if: $GITLAB_USER_LOGIN != "marge-bot" variables: LAVA_JOB_PRIORITY: 50