Is it possible to change CI/CD configuration file settings in bulk for all projects?

Dear all,

please, is there any way how change CI/CD configuration file in bulk for all projects ?
Or is it possible place in CI/CD configuration file some variable so that this path depends on variable ?

Thank you very much for your help !:blush:

Hi,

It’s not possible to bulk update the configuration.

What you probably want / need is a separate project where you will store common configuration file (e.g. base.yml) and then you can include it in all other project you want.

include:
  - project: 'full/path/to/project/with/common/config'
    file: base.yml

This way, you can only change your gitlab config once and it will be immediately applied to all projects using it (upon creating a new pipeline).

Read more about it in the docs.

Hope this helps.