From 5ba1ac68f58a4a04799c2e45a4d744ce9a42a93f Mon Sep 17 00:00:00 2001
From: Tim Jaacks <tim.jaacks@seco.com>
Date: Mon, 20 Feb 2023 20:18:18 +0100
Subject: [PATCH] Revert "Skip build if "skip build" label is set"

This reverts commit 4db257d36052c74eabed7ef43a05d98d3998ffec.

It does not work on the manifest, because we do not run merge request
pipelines there, so CI_MERGE_REQUEST_LABELS is not set at all.
---
 manifest-pipeline.yml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/manifest-pipeline.yml b/manifest-pipeline.yml
index f9a549f1..363d78f7 100644
--- a/manifest-pipeline.yml
+++ b/manifest-pipeline.yml
@@ -31,9 +31,6 @@ workflow:
 
 .full_build_pipeline:
   rules:
-    # Do not run build if the "skip build" label is set on the merge request
-    - if: $CI_MERGE_REQUEST_LABELS =~ /skip build/
-      when: never
     # Run the full build pipeline on non-master branches (i.e. in the merge request)
     # or if explicitly triggered by the API or the web button.
     - if: $CI_COMMIT_REF_NAME != $MASTER_BRANCH
-- 
GitLab