gitlab-ci-patterns
Warn
Audited by Runlayer on Mar 7, 2026
Risk Level: MEDIUM
Scan Summary
Flagged Files (1)
gitlab-ci-patterns/SKILL.mdMEDIUM
86.2%
Malicious tool definition detected
## When to Use - Automate GitLab-based CI/CD - Implement multi-stage pipelines - Configure GitLab Runners - Deploy to Kubernetes from GitLab - Implement GitOps workflows ## Basic Pipeline Structure ```yaml stages: - build - test - deploy variables: DOCKER_DRIVER: overlay2 DOCKER_TLS_CERTDIR: "/certs" build: stage: build image: node:20 script: - npm ci - npm run build artifacts: paths: - dist/ expire_in: 1 hour cache: key: ${CI_COMMIT_REF_SLUG} paths: - node_modules/ test: stage: test image: node
Audit Metadata