Problem with CI trigger-child-pipelines
Hello everyone, I have a request and I can’t find response with the documentation. I want to do something like that : “if a pipeline fails I want the whole pipeline to fail regardless of the stage”.
I have this conf :
project_a:
trigger:
include: project_a/.gitlab-ci.yml
strategy: depend
only:
changes:
- project_a/**/*
refs:
- main
project_b:
trigger:
include: project_b/.gitlab-ci.yml
strategy: depend
only:
changes:
- project_b/**/*
refs:
- main
project_c:
trigger:
include: project_c/.gitlab-ci.yml
strategy: depend
only:
changes:
- project_c/**/*
refs:
- main
Is it possible ?
Thanks in advance for you anwser.
Best regards,
Théo.