From fe4b95c532161d15bc2950c433dcd81d005802fb Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 28 Mar 2021 15:30:15 +0000 Subject: [PATCH] gitlab-ci: block parent pipeline until child is complete Without strategy: depend, the parent pipeline will succeed immediately after triggering the child. It's more useful to mirror the status, so the commit status is rendered correctly. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1a8367d6bd..72df9f55de 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,6 +22,7 @@ generatePipeline: startPipeline: stage: start trigger: + strategy: depend include: - artifact: gitlab-ci.yml job: generatePipeline