Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-10-07 21:08:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-10-07 21:08:34 +0300
commit1850d48925997ccc467fe0cbe6144d1d67fbdb55 (patch)
tree1c2081b4f9b986e9017761db5b6915ff3db8de79 /doc/ci/parent_child_pipelines.md
parent1d3a583ac1d4affb8871a76121815b1c104ef93a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/ci/parent_child_pipelines.md')
-rw-r--r--doc/ci/parent_child_pipelines.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/ci/parent_child_pipelines.md b/doc/ci/parent_child_pipelines.md
index f2a4020cc4a..7fdf9f785ce 100644
--- a/doc/ci/parent_child_pipelines.md
+++ b/doc/ci/parent_child_pipelines.md
@@ -71,6 +71,18 @@ microservice_a:
- template: Security/SAST.gitlab-ci.yml
```
+In [GitLab 13.5](https://gitlab.com/gitlab-org/gitlab/-/issues/205157) and later,
+you can use [`include:file`](yaml/README.md#includefile) to trigger child pipelines
+with a configuration file in a different project:
+
+```yaml
+microservice_a:
+ trigger:
+ include:
+ - project: 'my-group/my-pipeline-library'
+ file: 'path/to/ci-config.yml'
+```
+
NOTE: **Note:**
The max number of entries that are accepted for `trigger:include:` is three.