d2cc841c55
This commit adds CI job that validates all `*.yml` with `yamllint`. This commit fixes all offenses present in repository.
17 lines
398 B
YAML
17 lines
398 B
YAML
package-and-qa:
|
|
image: ruby:2.6-alpine
|
|
stage: review # So even if review-deploy failed we can still run this
|
|
when: manual
|
|
before_script: []
|
|
dependencies: []
|
|
cache: {}
|
|
variables:
|
|
GIT_DEPTH: "1"
|
|
retry: 0
|
|
script:
|
|
- source scripts/utils.sh
|
|
- install_gitlab_gem
|
|
- ./scripts/trigger-build omnibus
|
|
only:
|
|
- /.+/@gitlab-org/gitlab-ce
|
|
- /.+/@gitlab-org/gitlab-ee
|