From fdf69aac808fa9570a67f57f043a3f4c4d556ce2 Mon Sep 17 00:00:00 2001 From: Simon McVittie <smcv@collabora.com> Date: Tue, 8 Jun 2021 17:19:03 +0100 Subject: [PATCH] CI: Don't run pipelines for merge requests If we avoid running pipelines for merge requests, then the status of the pipeline for the branch will show up. The pipeline for the branch can be more comprehensive because it has access to project-specific masked and protected variables. Signed-off-by: Simon McVittie <smcv@collabora.com> --- debian/gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/gitlab-ci.yml b/debian/gitlab-ci.yml index 2d28d2811..a9f68b9fc 100644 --- a/debian/gitlab-ci.yml +++ b/debian/gitlab-ci.yml @@ -71,6 +71,12 @@ variables: # Create a File variable with a private key authorized for P_V_CI_UPLOAD_USER PRESSURE_VESSEL_CI_UPLOAD_SSH_PRIVATE_KEY_FILE: '' +workflow: + rules: + - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' + when: never + - when: always + stages: - build - relocatable-install -- GitLab