I'm working on a project where we use a similar gitlab-ci.yml file across multiple projects, but I need to make a change that affects almost all branches. Merging or rebasing would take too much time, and while I've thought about creating a diff file to apply to each branch, that seems like an inefficient process too. Does anyone have suggestions on how to handle this more effectively?
1 Answer
You might want to consider creating a repository with template files that you can reference in your projects. This doesn’t eliminate the need to update each branch, but it does mean you only have to do it once per template. It's a good way to manage tech debt too!

We actually have some jobs set up through templates, but unfortunately, this particular change isn't one of them. Thanks for the suggestion!