I have a pipeline that contains only manual jobs. Is it possible from within a multi-project pipeline to trigger this pipeline and tell it to run only some specific jobs? Like it would mimic a manual trigger.
Example:
My .gitlab-ci.yml
(in myProject/Foo) file would look like this:
```
deploy_to_Production:
<<: *job_deploy_definition
stage: deploy
when: manual
variables:
ENV: "Prod"
deploy_to_Integration:
<<: *job_deploy_definition
stage: deploy
when: manual
variables:
ENV: "Int"
From the .gitlab-ci.yml
file on my multi-project pipeline, I would like to trigger only one specific job:
...
production_deploy:
stage: deploy
trigger:
project: myProject/Foo:deployToProduction # Is something like this possible ???
strategy: depend
We are using Community Edition.
Many thanks.