TIL how to alter gitlab-ci include-directives
We have a set of common pipeline jobs that are shared among different projects in Gitlab. We include them like this:
include:
- project: 'shared/gitlab/linting'
ref: master
file:
- markdown.yml
- ansible.yml
When you do this, these included jobs get executed with the runner that is defined in the …
more ...