2022-10-11 01:57:18 +05:30
---
stage: Verify
group: Pipeline Authoring
2022-11-25 23:54:43 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
2022-10-11 01:57:18 +05:30
---
# Downstream pipelines **(FREE)**
A downstream pipeline is any GitLab CI/CD pipeline triggered by another pipeline.
2022-11-25 23:54:43 +05:30
Downstream pipelines run independently and concurrently to the upstream pipeline
that triggered them.
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
- A [parent-child pipeline ](downstream_pipelines.md#parent-child-pipelines ) is a downstream pipeline
triggered in the *same* project as the first pipeline.
- A [multi-project pipeline ](#multi-project-pipelines ) is a downstream pipeline triggered
in a *different* project than the first pipeline.
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
You can sometimes use parent-child pipelines and multi-project pipelines for similar purposes,
but there are [key differences ](pipeline_architectures.md ).
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
## Parent-child pipelines
2023-01-13 00:05:48 +05:30
A parent pipeline is a pipeline that triggers a downstream pipeline in the same project.
The downstream pipeline is called a child pipeline.
Child pipelines:
2022-10-11 01:57:18 +05:30
- Run under the same project, ref, and commit SHA as the parent pipeline.
2022-11-25 23:54:43 +05:30
- Do not directly affect the overall status of the ref the pipeline runs against. For example,
2022-10-11 01:57:18 +05:30
if a pipeline fails for the main branch, it's common to say that "main is broken".
2022-11-25 23:54:43 +05:30
The status of child pipelines only affects the status of the ref if the child
2022-10-11 01:57:18 +05:30
pipeline is triggered with [`strategy:depend` ](../yaml/index.md#triggerstrategy ).
- Are automatically canceled if the pipeline is configured with [`interruptible` ](../yaml/index.md#interruptible )
when a new pipeline is created for the same ref.
2023-01-13 00:05:48 +05:30
- Are not displayed in the project's pipeline list. You can only view child pipelines on
their parent pipeline's details page.
2022-11-25 23:54:43 +05:30
### Nested child pipelines
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/29651) in GitLab 13.4.
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/243747) in GitLab 13.5.
2023-01-13 00:05:48 +05:30
Parent and child pipelines have a maximum depth of two levels of child pipelines.
A parent pipeline can trigger many child pipelines, and these child pipelines can trigger
their own child pipelines. You cannot trigger another level of child pipelines.
2022-11-25 23:54:43 +05:30
< i class = "fa fa-youtube-play youtube" aria-hidden = "true" > < / i >
For an overview, see [Nested Dynamic Pipelines ](https://youtu.be/C5j3ju9je2M ).
## Multi-project pipelines
A pipeline in one project can trigger downstream pipelines in another project,
called multi-project pipelines. The user triggering the upstream pipeline must be able to
start pipelines in the downstream project, otherwise [the downstream pipeline fails to start ](#trigger-job-fails-and-does-not-create-multi-project-pipeline ).
2022-10-11 01:57:18 +05:30
Multi-project pipelines:
2022-11-25 23:54:43 +05:30
- Are triggered from another project's pipeline, but the upstream (triggering) pipeline does
2022-10-11 01:57:18 +05:30
not have much control over the downstream (triggered) pipeline. However, it can
choose the ref of the downstream pipeline, and pass CI/CD variables to it.
- Affect the overall status of the ref of the project it runs in, but does not
affect the status of the triggering pipeline's ref, unless it was triggered with
[`strategy:depend` ](../yaml/index.md#triggerstrategy ).
- Are not automatically canceled in the downstream project when using [`interruptible` ](../yaml/index.md#interruptible )
if a new pipeline runs for the same ref in the upstream pipeline. They can be
automatically canceled if a new pipeline is triggered for the same ref on the downstream project.
2023-01-13 00:05:48 +05:30
- Are visible in the downstream project's pipeline list.
2022-10-11 01:57:18 +05:30
- Are independent, so there are no nesting limits.
2022-11-25 23:54:43 +05:30
Learn more in the "Cross-project Pipeline Triggering and Visualization" demo at
[GitLab@learn ](https://about.gitlab.com/learn/ ), in the Continuous Integration section.
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
If you use a public project to trigger downstream pipelines in a private project,
make sure there are no confidentiality problems. The upstream project's pipelines page
always displays:
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
- The name of the downstream project.
- The status of the pipeline.
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
## Trigger a downstream pipeline from a job in the `.gitlab-ci.yml` file
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
Use the [`trigger` ](../yaml/index.md#trigger ) keyword in your `.gitlab-ci.yml` file
to create a job that triggers a downstream pipeline. This job is called a trigger job.
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
For example:
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
::Tabs
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
:::TabTitle Parent-child pipeline
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
```yaml
trigger_job:
trigger:
2023-01-13 00:05:48 +05:30
include:
- local: path/to/child-pipeline.yml
2022-11-25 23:54:43 +05:30
```
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
:::TabTitle Multi-project pipeline
2022-10-11 01:57:18 +05:30
```yaml
2022-11-25 23:54:43 +05:30
trigger_job:
trigger:
2023-01-13 00:05:48 +05:30
project: project-group/my-downstream-project
2022-10-11 01:57:18 +05:30
```
2022-11-25 23:54:43 +05:30
::EndTabs
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
After the trigger job starts, the initial status of the job is `pending` while GitLab
attempts to create the downstream pipeline. The trigger job shows `passed` if the
downstream pipeline is created successfully, otherwise it shows `failed` . Alternatively,
you can [set the trigger job to show the downstream pipeline's status ](#mirror-the-status-of-a-downstream-pipeline-in-the-trigger-job )
instead.
2022-11-25 23:54:43 +05:30
### Use `rules` to control downstream pipeline jobs
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
Use CI/CD variables or the [`rules` ](../yaml/index.md#rulesif ) keyword to
[control job behavior ](../jobs/job_control.md ) in downstream pipelines.
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
When you trigger a downstream pipeline with the [`trigger` ](../yaml/index.md#trigger ) keyword,
2022-11-25 23:54:43 +05:30
the value of the [`$CI_PIPELINE_SOURCE` predefined variable ](../variables/predefined_variables.md )
for all jobs is:
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
- `pipeline` for multi-project pipelines.
2023-01-13 00:05:48 +05:30
- `parent_pipeline` for parent-child pipelines.
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
For example, to control jobs in multi-project pipelines in a project that also runs
merge request pipelines:
2022-11-25 23:54:43 +05:30
```yaml
job1:
rules:
- if: $CI_PIPELINE_SOURCE == "pipeline"
script: echo "This job runs in multi-project pipelines only"
job2:
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
script: echo "This job runs in merge request pipelines only"
job3:
rules:
- if: $CI_PIPELINE_SOURCE == "pipeline"
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
script: echo "This job runs in both multi-project and merge request pipelines"
```
### Use a child pipeline configuration file in a different project
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/205157) in GitLab 13.5.
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
You can use [`include:project` ](../yaml/index.md#includeproject ) in a trigger job
to trigger child pipelines with a configuration file in a different project:
2022-10-11 01:57:18 +05:30
```yaml
microservice_a:
trigger:
2022-11-25 23:54:43 +05:30
include:
- project: 'my-group/my-pipeline-library'
ref: 'main'
file: '/path/to/child-pipeline.yml'
2022-10-11 01:57:18 +05:30
```
2022-11-25 23:54:43 +05:30
### Combine multiple child pipeline configuration files
You can include up to three configuration files when defining a child pipeline. The child pipeline's
2022-10-11 01:57:18 +05:30
configuration is composed of all configuration files merged together:
```yaml
microservice_a:
trigger:
include:
- local: path/to/microservice_a.yml
- template: Security/SAST.gitlab-ci.yml
- project: 'my-group/my-pipeline-library'
ref: 'main'
file: '/path/to/child-pipeline.yml'
```
2022-11-25 23:54:43 +05:30
### Dynamic child pipelines
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
You can trigger a child pipeline from a YAML file generated in a job, instead of a
static file saved in your project. This technique can be very powerful for generating pipelines
targeting content that changed or to build a matrix of targets and architectures.
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
The artifact containing the generated YAML file must not be [larger than 5MB ](https://gitlab.com/gitlab-org/gitlab/-/issues/249140 ).
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
< i class = "fa fa-youtube-play youtube" aria-hidden = "true" > < / i >
For an overview, see [Create child pipelines using dynamically generated configurations ](https://youtu.be/nMdfus2JWHM ).
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
For an example project that generates a dynamic child pipeline, see
[Dynamic Child Pipelines with Jsonnet ](https://gitlab.com/gitlab-org/project-templates/jsonnet ).
This project shows how to use a data templating language to generate your `.gitlab-ci.yml` at runtime.
You can use a similar process for other templating languages like
[Dhall ](https://dhall-lang.org/ ) or [ytt ](https://get-ytt.io/ ).
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
#### Trigger a dynamic child pipeline
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
To trigger a child pipeline from a dynamically generated configuration file:
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
1. Generate the configuration file in a job and save it as an [artifact ](../yaml/index.md#artifactspaths ):
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
```yaml
generate-config:
stage: build
script: generate-ci-config > generated-config.yml
artifacts:
paths:
- generated-config.yml
```
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
1. Configure the trigger job to run after the job that generated the configuration file,
and set `include: artifact` to the generated artifact:
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
```yaml
child-pipeline:
stage: test
trigger:
include:
- artifact: generated-config.yml
job: generate-config
```
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
In this example, GitLab retrieves `generated-config.yml` and triggers a child pipeline
with the CI/CD configuration in that file.
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
The artifact path is parsed by GitLab, not the runner, so the path must match the
syntax for the OS running GitLab. If GitLab is running on Linux but using a Windows
runner for testing, the path separator for the trigger job is `/` . Other CI/CD
2023-01-13 00:05:48 +05:30
configuration for jobs that use the Windows runner, like scripts, use < code > \ < / code > .
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
### Run child pipelines with merge request pipelines
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
To trigger a child pipeline as a [merge request pipeline ](merge_request_pipelines.md ):
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
1. Set the trigger job to run on merge requests in the parent pipeline's configuration file:
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
```yaml
microservice_a:
trigger:
include: path/to/microservice_a.yml
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
```
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
1. Configure the child pipeline jobs to run in merge request pipelines with [`rules` ](../yaml/index.md#rules )
or [`workflow:rules` ](../yaml/index.md#workflowrules ). For example, with `rules`
in a child pipeline's configuration file:
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
```yaml
job1:
script: ...
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
job2:
script: ...
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
```
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
### Specify a branch for multi-project pipelines
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
You can specify the branch to use when triggering a multi-project pipeline. GitLab uses
the commit on the head of the branch to create the downstream pipeline. For example:
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
```yaml
staging:
stage: deploy
trigger:
project: my/deployment
branch: stable-11-2
```
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
Use:
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
- The `project` keyword to specify the full path to the downstream project.
In [GitLab 15.3 and later ](https://gitlab.com/gitlab-org/gitlab/-/issues/367660 ),
you can use [variable expansion ](../variables/where_variables_can_be_used.md#gitlab-ciyml-file ).
- The `branch` keyword to specify the name of a branch or [tag ](../../topics/git/tags.md )
in the project specified by `project` . You can use variable expansion.
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
## Trigger a multi-project pipeline by using the API
2022-10-11 01:57:18 +05:30
2022-11-25 23:54:43 +05:30
You can use the [CI/CD job token (`CI_JOB_TOKEN`) ](../jobs/ci_job_token.md ) with the
[pipeline trigger API endpoint ](../../api/pipeline_triggers.md#trigger-a-pipeline-with-a-token )
2023-01-13 00:05:48 +05:30
to trigger multi-project pipelines from inside a CI/CD job. GitLab sets pipelines triggered
with a job token as downstream pipelines of the pipeline that contains the job that
made the API call.
2022-11-25 23:54:43 +05:30
For example:
```yaml
trigger_pipeline:
stage: deploy
script:
- curl --request POST --form "token=$CI_JOB_TOKEN" --form ref=main "https://gitlab.example.com/api/v4/projects/9/trigger/pipeline"
rules:
- if: $CI_COMMIT_TAG
environment: production
```
2022-10-11 01:57:18 +05:30
## View a downstream pipeline
2022-11-25 23:54:43 +05:30
> Hover behavior for pipeline cards [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/197140/) in GitLab 13.2.
2022-10-11 01:57:18 +05:30
In the [pipeline graph view ](index.md#view-full-pipeline-graph ), downstream pipelines display
2022-11-25 23:54:43 +05:30
as a list of cards on the right of the graph. Hover over the pipeline's card to view
which job triggered the downstream pipeline.
2022-10-11 01:57:18 +05:30
### Retry a downstream pipeline
> - Retry from graph view [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/354974) in GitLab 15.0 [with a flag](../../administration/feature_flags.md) named `downstream_retry_action`. Disabled by default.
> - Retry from graph view [generally available and feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/357406) in GitLab 15.1.
To retry a completed downstream pipeline, select **Retry** (**{retry}**):
- From the downstream pipeline's details page.
- On the pipeline's card in the [pipeline graph view ](index.md#view-full-pipeline-graph ).
### Cancel a downstream pipeline
> - Retry from graph view [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/354974) in GitLab 15.0 [with a flag](../../administration/feature_flags.md) named `downstream_retry_action`. Disabled by default.
> - Retry from graph view [generally available and feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/357406) in GitLab 15.1.
To cancel a downstream pipeline that is still running, select **Cancel** (**{cancel}**):
- From the downstream pipeline's details page.
- On the pipeline's card in the [pipeline graph view ](index.md#view-full-pipeline-graph ).
### Mirror the status of a downstream pipeline in the trigger job
2023-01-13 00:05:48 +05:30
You can mirror the status of the downstream pipeline in the trigger job
2022-10-11 01:57:18 +05:30
by using [`strategy: depend` ](../yaml/index.md#triggerstrategy ):
::Tabs
2023-01-13 00:05:48 +05:30
:::TabTitle Parent-child pipeline
2022-10-11 01:57:18 +05:30
```yaml
trigger_job:
trigger:
2023-01-13 00:05:48 +05:30
include:
- local: path/to/child-pipeline.yml
2022-10-11 01:57:18 +05:30
strategy: depend
```
2023-01-13 00:05:48 +05:30
:::TabTitle Multi-project pipeline
2022-10-11 01:57:18 +05:30
```yaml
trigger_job:
trigger:
2023-01-13 00:05:48 +05:30
project: my/project
2022-10-11 01:57:18 +05:30
strategy: depend
```
::EndTabs
### View multi-project pipelines in pipeline graphs **(PREMIUM)**
2023-01-13 00:05:48 +05:30
After you trigger a multi-project pipeline, the downstream pipeline displays
2022-10-11 01:57:18 +05:30
to the right of the [pipeline graph ](index.md#visualize-pipelines ).
![Multi-project pipeline graph ](img/multi_project_pipeline_graph_v14_3.png )
In [pipeline mini graphs ](index.md#pipeline-mini-graphs ), the downstream pipeline
displays to the right of the mini graph.
![Multi-project pipeline mini graph ](img/pipeline_mini_graph_v15_0.png )
2023-01-13 00:05:48 +05:30
## Fetch artifacts from an upstream pipeline
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
Use [`needs:project` ](../yaml/index.md#needsproject ) to fetch artifacts from an
upstream pipeline:
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
1. In the upstream pipeline, save the artifacts in a job with the [`artifacts` ](../yaml/index.md#artifacts )
keyword, then trigger the downstream pipeline with a trigger job:
2022-10-11 01:57:18 +05:30
```yaml
build_artifacts:
stage: build
script:
- echo "This is a test artifact!" >> artifact.txt
artifacts:
paths:
- artifact.txt
deploy:
stage: deploy
trigger: my/downstream_project
```
2023-01-13 00:05:48 +05:30
1. Use `needs:project` in a job in the downstream pipeline to fetch the artifacts.
2022-10-11 01:57:18 +05:30
```yaml
test:
stage: test
script:
- cat artifact.txt
needs:
- project: my/upstream_project
job: build_artifacts
ref: main
artifacts: true
```
2023-01-13 00:05:48 +05:30
Set:
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
- `job` to the job in the upstream pipeline that created the artifacts.
- `ref` to the branch.
- `artifacts` to `true` .
### Fetch artifacts from an upstream merge request pipeline
When you use `needs:project` to [pass artifacts to a downstream pipeline ](#fetch-artifacts-from-an-upstream-pipeline ),
2022-10-11 01:57:18 +05:30
the `ref` value is usually a branch name, like `main` or `development` .
2023-01-13 00:05:48 +05:30
For [merge request pipelines ](merge_request_pipelines.md ), the `ref` value is in the form of `refs/merge-requests/<id>/head` ,
2022-10-11 01:57:18 +05:30
where `id` is the merge request ID. You can retrieve this ref with the [`CI_MERGE_REQUEST_REF_PATH` ](../variables/predefined_variables.md#predefined-variables-for-merge-request-pipelines )
CI/CD variable. Do not use a branch name as the `ref` with merge request pipelines,
because the downstream pipeline attempts to fetch artifacts from the latest branch pipeline.
To fetch the artifacts from the upstream `merge request` pipeline instead of the `branch` pipeline,
2023-01-13 00:05:48 +05:30
pass `CI_MERGE_REQUEST_REF_PATH` to the downstream pipeline using [variable inheritance ](#pass-yaml-defined-cicd-variables ):
2022-10-11 01:57:18 +05:30
1. In a job in the upstream pipeline, save the artifacts using the [`artifacts` ](../yaml/index.md#artifacts ) keyword.
2023-01-13 00:05:48 +05:30
1. In the job that triggers the downstream pipeline, pass the `$CI_MERGE_REQUEST_REF_PATH` variable:
2022-10-11 01:57:18 +05:30
```yaml
build_artifacts:
stage: build
script:
- echo "This is a test artifact!" >> artifact.txt
artifacts:
paths:
- artifact.txt
upstream_job:
variables:
UPSTREAM_REF: $CI_MERGE_REQUEST_REF_PATH
trigger:
project: my/downstream_project
branch: my-branch
```
1. In a job in the downstream pipeline, fetch the artifacts from the upstream pipeline
2023-01-13 00:05:48 +05:30
by using `needs:project` and the passed variable as the `ref` :
2022-10-11 01:57:18 +05:30
```yaml
test:
stage: test
script:
- cat artifact.txt
needs:
- project: my/upstream_project
job: build_artifacts
ref: $UPSTREAM_REF
artifacts: true
```
2023-01-13 00:05:48 +05:30
You can use this method to fetch artifacts from upstream merge request pipeline,
but not from [merge results pipelines ](merged_results_pipelines.md ).
2022-10-11 01:57:18 +05:30
## Pass CI/CD variables to a downstream pipeline
2023-01-13 00:05:48 +05:30
You can pass [CI/CD variables ](../variables/index.md ) to a downstream pipeline with
a few different methods, based on where the variable is created or defined.
2022-10-11 01:57:18 +05:30
### Pass YAML-defined CI/CD variables
2023-01-13 00:05:48 +05:30
You can use the `variables` keyword to pass CI/CD variables to a downstream pipeline.
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
For example:
::Tabs
:::TabTitle Parent-child pipeline
2022-10-11 01:57:18 +05:30
```yaml
2023-01-13 00:05:48 +05:30
variables:
VERSION: "1.0.0"
2022-10-11 01:57:18 +05:30
staging:
variables:
ENVIRONMENT: staging
stage: deploy
2023-01-13 00:05:48 +05:30
trigger:
include:
- local: path/to/child-pipeline.yml
2022-10-11 01:57:18 +05:30
```
2023-01-13 00:05:48 +05:30
:::TabTitle Multi-project pipeline
2022-10-11 01:57:18 +05:30
```yaml
variables:
2023-01-13 00:05:48 +05:30
VERSION: "1.0.0"
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
staging:
2022-10-11 01:57:18 +05:30
variables:
2023-01-13 00:05:48 +05:30
ENVIRONMENT: staging
stage: deploy
trigger: my-group/my-deployment-project
2022-10-11 01:57:18 +05:30
```
2023-01-13 00:05:48 +05:30
::EndTabs
The `ENVIRONMENT` variable is available in every job defined in the downstream pipeline.
The `VERSION` global variable is also available in the downstream pipeline, because
all jobs in a pipeline, including trigger jobs, inherit [global `variables` ](../yaml/index.md#variables ).
2022-11-25 23:54:43 +05:30
#### Prevent global variables from being passed
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
You can stop global CI/CD variables from reaching the downstream pipeline with
[`inherit:variables:false` ](../yaml/index.md#inheritvariables ).
For example:
::Tabs
:::TabTitle Parent-child pipeline
2022-10-11 01:57:18 +05:30
```yaml
variables:
2023-01-13 00:05:48 +05:30
GLOBAL_VAR: value
2022-10-11 01:57:18 +05:30
2023-01-13 00:05:48 +05:30
trigger-job:
2022-10-11 01:57:18 +05:30
inherit:
variables: false
variables:
2023-01-13 00:05:48 +05:30
JOB_VAR: value
trigger:
include:
- local: path/to/child-pipeline.yml
2022-10-11 01:57:18 +05:30
```
2023-01-13 00:05:48 +05:30
:::TabTitle Multi-project pipeline
```yaml
variables:
GLOBAL_VAR: value
trigger-job:
inherit:
variables: false
variables:
JOB_VAR: value
trigger: my-group/my-project
```
::EndTabs
The `GLOBAL_VAR` variable is not available in the triggered pipeline, but `JOB_VAR`
is available.
2022-10-11 01:57:18 +05:30
### Pass a predefined variable
2023-01-13 00:05:48 +05:30
To pass information about the upstream pipeline using [predefined CI/CD variables ](../variables/predefined_variables.md ).
use interpolation. Save the predefined variable as a new job variable in the trigger
job, which is passed to the downstream pipeline. For example:
::Tabs
:::TabTitle Parent-child pipeline
```yaml
trigger-job:
variables:
PARENT_BRANCH: $CI_COMMIT_REF_NAME
trigger:
include:
- local: path/to/child-pipeline.yml
```
:::TabTitle Multi-project pipeline
2022-10-11 01:57:18 +05:30
```yaml
2023-01-13 00:05:48 +05:30
trigger-job:
2022-10-11 01:57:18 +05:30
variables:
UPSTREAM_BRANCH: $CI_COMMIT_REF_NAME
2023-01-13 00:05:48 +05:30
trigger: my-group/my-project
2022-10-11 01:57:18 +05:30
```
2023-01-13 00:05:48 +05:30
::EndTabs
The `UPSTREAM_BRANCH` variable, which contains the value of the upstream pipeline's `$CI_COMMIT_REF_NAME`
predefined CI/CD variable, is available in the downstream pipeline.
Do not use this method to pass [masked variables ](../variables/index.md#mask-a-cicd-variable )
to a multi-project pipeline. The CI/CD masking configuration is not passed to the
downstream pipeline and the variable could be unmasked in job logs in the downstream project.
2022-10-11 01:57:18 +05:30
You cannot use this method to forward [job-level persisted variables ](../variables/where_variables_can_be_used.md#persisted-variables )
to a downstream pipeline, as they are not available in trigger jobs.
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 take precedence.
### Pass dotenv variables created in a job **(PREMIUM)**
You can pass variables to a downstream pipeline with [`dotenv` variable inheritance ](../variables/index.md#pass-an-environment-variable-to-another-job )
and [`needs:project` ](../yaml/index.md#needsproject ).
For example, in a [multi-project pipeline ](#multi-project-pipelines ):
1. Save the variables in a `.env` file.
1. Save the `.env` file as a `dotenv` report.
1. Trigger the downstream pipeline.
```yaml
build_vars:
stage: build
script:
- echo "BUILD_VERSION=hello" >> build.env
artifacts:
reports:
dotenv: build.env
deploy:
stage: deploy
trigger: my/downstream_project
```
1. Set the `test` job in the downstream pipeline to inherit the variables from the `build_vars`
job in the upstream project with `needs` . The `test` job inherits the variables in the
`dotenv` report and it can access `BUILD_VERSION` in the script:
```yaml
test:
stage: test
script:
- echo $BUILD_VERSION
needs:
- project: my/upstream_project
job: build_vars
ref: master
artifacts: true
```
2022-11-25 23:54:43 +05:30
## Troubleshooting
### Trigger job fails and does not create multi-project pipeline
With multi-project pipelines, the trigger job fails and does not create the downstream pipeline if:
- The downstream project is not found.
- The user that creates the upstream pipeline does not have [permission ](../../user/permissions.md )
to create pipelines in the downstream project.
- The downstream pipeline targets a protected branch and the user does not have permission
to run pipelines against the protected branch. See [pipeline security for protected branches ](index.md#pipeline-security-on-protected-branches )
for more information.
2023-01-13 00:05:48 +05:30
### `Ref is ambiguous`
You cannot trigger a multi-project pipeline with a tag when a branch exists with the same
name. The downstream pipeline fails to create with the error: `downstream pipeline can not be created, Ref is ambiguous` .
Only trigger multi-project pipelines with tag names that do not match branch names.