I have 4 git repos
alpha
bravo
charlie
zulu
alpha
, bravo
and charlie
are all source code with dependencies, and zulu
is a cookbook to compile and package them all
How can I trigger a build step on zulu
if any one of alpha
, bravo
, or charlie
have a commit to master?
I’m thinking I could have a build step in zulu
that is configured to only run with an ‘external’ trigger, and alpha bravo charlie could all have build steps to call a webhook.
I can’t find any documentation on how the ‘external’ trigger works.
Is this a feasible option?
Any suggestions on how I could implement this?