GitLab project Severitylow builtIn

Description

CI runners and downstream pipelines reference projects by path_with_namespace (e.g., my-group/my-project). A project with empty PathWithNamespace cannot be addressed by include: in .gitlab-ci.yml, by deploy keys, or by inter-project pipeline triggers. Sanity check for inventory integrity.

Recommandation

1. Re-run the GitLab inventory scan (CLI: dos resource scan --enterprise GitLab) for the affected project. 
2. Verify the source GitLab Project is healthy via GET /api/v4/projects/:id and confirm path_with_namespace is populated.

Règle de politique

{
  "target": "GLProject",
  "if": {
    "allOf": [
      {
        "resource": "GLProject",
        "property": "PathWithNamespace",
        "operator": "notEquals",
        "value": ""
      }
    ]
  },
  "then": {
    "effect": "Audit"
  }
}