I have a pipeline, let's call it c. I would like c to be triggered if either pipeline a or pipeline b finishes. Please see bellow my attempt. Anyone knows why it does not work?
resources:
pipelines:
- pipeline: a
source: ci-a
trigger:
branches:
- '*'
- pipeline: ci-b
source: b
trigger:
branches:
- '*'