Lloyd
Lloyd

Reputation: 57

Gitlab Call Upstream Project from Downstream

Does anyone have an example of how you can trigger an upstream project's CI from a downstream project? So if there is a commit to the downstream project, run the pipeline in the upstream project.

Upvotes: 1

Views: 506

Answers (1)

VonC
VonC

Reputation: 1324308

The fact a project is downstream or upstream should not matter in case of a Multi-project pipelines.

That uses the trigger keyword

trigger-multi-project-pipeline:
  trigger: my-group/my-project

Upvotes: 1

Related Questions