2023-11-07 16:35:27 +01:00
|
|
|
---
|
|
|
|
depends_on:
|
|
|
|
- gitleaks
|
2024-01-29 12:13:07 +01:00
|
|
|
|
2023-11-07 16:35:27 +01:00
|
|
|
steps:
|
|
|
|
ansible-lint:
|
2024-02-09 11:04:46 +01:00
|
|
|
image: quay.io/ansible/creator-ee:v24.2.0
|
2023-11-07 16:35:27 +01:00
|
|
|
commands:
|
|
|
|
- ansible-lint --version
|
2024-01-26 15:01:00 +01:00
|
|
|
- echo $${VAULTPASS} > ./vault-pass.yml # nach des Secret in Großschreibung
|
2023-11-07 16:35:27 +01:00
|
|
|
- ansible-galaxy install -r requirements.yml
|
|
|
|
- ansible-lint --force-color --format pep8
|
2024-05-06 23:38:39 +02:00
|
|
|
# https://woodpecker-ci.org/docs/usage/secrets#use-secrets-in-commands
|
2024-05-06 23:40:10 +02:00
|
|
|
secrets: [vaultpass]
|
2024-02-06 21:03:15 +01:00
|
|
|
when:
|
2024-05-06 23:36:28 +02:00
|
|
|
- event: [push, pull_request]
|
|
|
|
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
2024-02-06 21:03:15 +01:00
|
|
|
...
|