Basically, I have several pipelines on several branches which are responsible for the same thing. Get the app config file, run VM from VMSS and run app generating some output. It generates a lot of work in case of any change in the pipeline. And in addition, new branches are added in time.
Is it possible to the amount of work and have one pipeline?
I had idea to:
- Prepare one big config or DB with data
- Prepare pipeline which will gather data and generate app config
- Basic on this config run it multiple times.
Is it a good approach or should I do it in other way?