64 lines
1.2 KiB
YAML
64 lines
1.2 KiB
YAML
name: salty-dog-gitlab-ci
|
|
rules:
|
|
- name: gitlab-stages
|
|
desc: should specify stages
|
|
level: info
|
|
tags:
|
|
- gitlab
|
|
- optional
|
|
|
|
select: '$'
|
|
check:
|
|
type: object
|
|
required: [stages]
|
|
properties:
|
|
stages:
|
|
type: array
|
|
items:
|
|
type: string
|
|
|
|
- name: gitlab-job-template
|
|
desc: template jobs should set the stage
|
|
level: info
|
|
tags:
|
|
- gitlab
|
|
- optional
|
|
|
|
select: '$'
|
|
check:
|
|
type: object
|
|
patternProperties:
|
|
"\\..+":
|
|
type: object
|
|
required: [stage]
|
|
properties:
|
|
stage:
|
|
type: string
|
|
|
|
- name: gitlab-job-script
|
|
desc: jobs must have a script
|
|
level: info
|
|
tags:
|
|
- gitlab
|
|
- important
|
|
|
|
select: '$'
|
|
check:
|
|
type: object
|
|
patternProperties:
|
|
"^(?!stages$|\\.)":
|
|
type: object
|
|
required: [script]
|
|
properties:
|
|
after_script:
|
|
type: array
|
|
items:
|
|
type: string
|
|
before_script:
|
|
type: array
|
|
items:
|
|
type: string
|
|
script:
|
|
type: array
|
|
items:
|
|
type: string |