From d71f6de6886fddc063a379a666669ea302bee7e9 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Sun, 17 Mar 2024 11:11:55 +0000 Subject: [PATCH] Issue #3428112 by longwave, fjgarlin, Spokje: Fix daily updated deps job --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dc0bf2aa55a4..aa2d64c087d9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,6 +33,8 @@ workflow: - if: $CI_PIPELINE_SOURCE == 'merge_request_event' # Run when called from an upstream pipeline https://docs.gitlab.com/ee/ci/pipelines/downstream_pipelines.html?tab=Multi-project+pipeline#use-rules-to-control-downstream-pipeline-jobs - if: $CI_PIPELINE_SOURCE == 'pipeline' + # Run when called from a parent pipeline (e.g. updated dependencies job) + - if: $CI_PIPELINE_SOURCE == 'parent_pipeline' # Run on commits. - if: $CI_PIPELINE_SOURCE == "push" && $CI_PROJECT_ROOT_NAMESPACE == "project" # The last rule above blocks manual and scheduled pipelines on non-default branch. The rule below allows them: -- GitLab