Can someone give definition of downstream pipeline?
I am newby at building CICD Pipelines. I came to this piece of code.
trigger:
include: '.gitlab-file.yml'
When I researched it, I found this definition for trigger: " Use trigger to define a downstream pipeline trigger. When GitLab starts a trigger job, a downstream pipeline is created"
It still doesn’t explain what downstream pipeline is. I couldn’t find anything in GitLab’s docs on downstream pipeline.
Can someone define what that is and give an example if possible?
So, I think the general idea is that your pipeline might start (trigger) a second pipeline, and that second pipeline is known as the downstream pipeline.