We have three pipelines:
- BUILD
- DEPLOY
- DEPLOY2
After completion of BUILD, we want to start DEPLOY and DEPLOY2 automatically and in parallel.
But right now only DEPLOY starts and DEPLOY2 is not triggered. Both are same configured:
resources:
pipelines:
- pipeline: 'build'
source: 'BUILD'
trigger:
branches:
include:
- refs/heads/*
What might be the issue?