I have 2 separate projects in AzDo, project-1
contains repo to build docker image and tag it accordingly like 1.0.0 , 1.0.1
etc. and in another projects-2
there are 2 separate repos which uses these tags. currently this is manual in repos@project-2.
My question is how can I automate the process in AzDo, that means if there is a new tag for docker in repo@project1
then it will automatically build the repos in project-2
with this new docker tag.
e.g. currently project-1
has image:1.0.0 and this is used in 2 repos in project-2
manually referring to 1.0.0.
Now I build a fresh tag in project-1 with tag 2.0.0, so how can I automatically build 2 repos@project-2
with this new 2.0.0 . Is there any link/signal from one build/release pipeline to another pipeline/project?
Any advice is greatly appreciated.