22 lines
431 B
YAML
22 lines
431 B
YAML
---
|
|
|
|
# gitLab ci stages
|
|
stages:
|
|
|
|
# deployment
|
|
- "gitleaks"
|
|
- "linting"
|
|
- "deployment"
|
|
|
|
|
|
# include jobs
|
|
include:
|
|
|
|
# deployment
|
|
- local: ".gitlab/gitleaks.yaml"
|
|
- local: ".gitlab/deployment.yaml"
|
|
|
|
# linting
|
|
- component: "$CI_SERVER_FQDN/components/ansible/linting@2.0.0"
|
|
- component: "$CI_SERVER_FQDN/components/markdownlint/markdownlint@1.0.0"
|
|
- component: "$CI_SERVER_FQDN/components/yamllint/yamllint@1.0.2"
|