Michael Grote
edbc68d36d
Reviewed-on: #585 Co-authored-by: Michael Grote <michael.grote@posteo.de> Co-committed-by: Michael Grote <michael.grote@posteo.de>
34 lines
642 B
YAML
34 lines
642 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: gitleaks
|
|
|
|
steps:
|
|
- name: gitleaks
|
|
image: plugins/gitleaks
|
|
settings:
|
|
path: .
|
|
when:
|
|
event:
|
|
exclude:
|
|
- tag
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: ansible-lint
|
|
steps:
|
|
- name: ansible-lint
|
|
image: quay.io/ansible/creator-ee
|
|
commands:
|
|
- ansible-lint --version
|
|
- echo $ANSIBLE_VAULT_PASSWORD > ./vault-pass.yml
|
|
- ansible-galaxy install -r requirements.yml
|
|
- ansible-lint --force-color --format pep8
|
|
when:
|
|
event:
|
|
exclude:
|
|
- tag
|
|
environment:
|
|
ANSIBLE_VAULT_PASSWORD:
|
|
from_secret: vault-pass
|