Missing sub-directory "Security/" before "SAST.gitlab-ci.yml"
https://docs.gitlab.com/ee/user/application_security/sast/ tells to include those lines multiple times:
include:
- template: SAST.gitlab-ci.yml
while the file SAST.gitlab-ci.yml is actually located below the directory Security/. The pipeline then fails:
Found errors in your .gitlab-ci.yml:
Included file `SAST.gitlab-ci.yml` is empty or does not exist!
The error is on the page multiple times! It should be
include:
- template: Security/SAST.gitlab-ci.yml