I'm aware that is possible to trigger another pipeline from another project by adding the below commands in a gitlab-ci file:
bridge: stage: stage_name_here trigger: project: path_to_another_project branch: branch_name strategy: depend The problem is that the config above will trigger all jobs, and I want to trigger only 2 jobs within the pipeline.
Any idea on how to trigger only those 2 specific jobs?