CI Linting: faulty CI-YML throws 500
The following syntax (which is wrong) throws a 500 when linting the yaml on .com and leads to an undefined error when committed:
include:
template:
- License-Management.gitlab-ci.yml
- Dependency-Scanning.gitlab-ci.yml
- SAST.gitlab-ci.yml
e.g. https://gitlab.com/gitlab-org/gitlab-ui/pipelines/78372333
The correct syntax should be:
include:
- template: License-Management.gitlab-ci.yml
- template: Dependency-Scanning.gitlab-ci.yml
- template: SAST.gitlab-ci.yml
