Is there a way to create a new pipeline that will hold multiple configurations and ability to choose which one of them to run?
I’ll give an example.
lets say I have 2 repositories in my project.
I would like to have a pipeline that clone the 2 repos and run a bat/csh file that builds an exe with some given parameters.
now lets say I have multiple release branches of these 2 repositories and I would like the pipeline to save all multiple default branches of these repos and their parameters in a configuration file to be used by the pipeline.
so if I need to deliver a hotfix based on one of the branches, all parameters used to run this pipeline in the past are set and I can modify whatever parameter I need for the hot fix (e.g. branch name of one of the repos).
same as repos there could be more parameters of the pipeline or even different number of repos per release build.
is such pipeline configuration possible in Azure DevOps?
Thanks,
David
I try to google it but with no success