summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2019-09-03 13:06:08 +0000
committerKamil Trzciński <ayufan@ayufan.eu>2019-09-03 13:06:08 +0000
commit264b0878e2d7a8f2c355c3159b0fbfa7ea34b8ac (patch)
treeb55c70392f291531bfba14e8c0004dfff012e5c3
parentf3b9ddb11bd28952eeb9ce544e9bf8014d42a923 (diff)
parent3ca6a3a201cdff0804f695a12a84f95dd7d03343 (diff)
downloadgitlab-ce-264b0878e2d7a8f2c355c3159b0fbfa7ea34b8ac.tar.gz
Merge branch 'mc/feature/downstream-pipeline-tracking-ce' into 'master'
Backport documentation for status checking behaviors See merge request gitlab-org/gitlab-ce!32184
-rw-r--r--doc/ci/multi_project_pipelines.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/ci/multi_project_pipelines.md b/doc/ci/multi_project_pipelines.md
index 61f260cb70d..377ae9717b2 100644
--- a/doc/ci/multi_project_pipelines.md
+++ b/doc/ci/multi_project_pipelines.md
@@ -176,6 +176,18 @@ Upstream pipelines take precedence over downstream ones. If there are two
variables with the same name defined in both upstream and downstream projects,
the ones defined in the upstream project will take precedence.
+### Mirroring status from triggered pipeline
+
+You can mirror the pipeline status from the triggered pipeline to the source
+bridge job by using `strategy: depend`. For example:
+
+```yaml
+trigger_job:
+ trigger:
+ project: my/project
+ strategy: depend
+```
+
### Mirroring status from upstream pipeline
You can mirror the pipeline status from an upstream pipeline to a bridge job by