Am I able to disable / ignore / remove a job which was imported from a template?
I’m using a template for some linting jobs:
include:
- project: 'group/gitlab-ci-templates'
file: 'lint.gitlab-ci.yml'
lint1:
extend: .my-linting-template1
lint2:
extend: .my-linting-template2
So I have these two job templates defined in lint.gitlab-ci.yml as a hidden job definiton. But I would rather define them as ordinary jobs (as opposed to .hidden jobs) and ignore / disable / remove some of the imported / included jobs from the template.
Is this possible in GitLab 13.3 on self-managed instance, if so, how?