we have a pipeline project (call it project A) being a dependency of a multibranch project (project B),
is there a way to trigger A's build from any branch of B instead of having to explicitly specify one?
In project A's Jenkinsfile, something like:
properties([
pipelineTriggers([
upstream(
threshold: hudson.model.Result.SUCCESS,
upstreamProjects: 'B/*'
)
])
])
Thanks!