We split our CI/CD pipelines in a CI and CD pipeline.
The CI pipeline is called “VABApolloDataModel-Export”, we only have a main branch.
We currently had it set like this in our CD pipeline, worked for weeks :
resources:
pipelines:
- pipeline: 'CI-Pipeline'
source: 'VABApolloDataModel-Export'
trigger:
branches:
- main
Also tried this
resources:
pipelines:
- pipeline: 'CI-Pipeline'
source: 'VABApolloDataModel-Export'
trigger: true
And tried this
resources:
pipelines:
- pipeline: 'CI-Pipeline'
source: 'VABApolloDataModel-Export'
trigger:
branches:
- '*'
None of these options are triggering the CD pipeline once the CI one is finished.
I checked for trigger issues in DevOps and it says that there are none.
Not sure what is causing this problem and why it did work properly before 🙁
Any idea’s ?
Regards,
Sven