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:
|
2024-07-09 17:35:56 +02:00
|
|
|
# Secrets
|
|
|
|
- echo $${SSHKEY} | base64 -d > ./id_ed25519 # woodpecker verschluckt linebreakes, daher mit base64 -w0 "kodiert"
|
|
|
|
- echo $${VAULTPASS} | base64 -d > ./vault-pass.yml # Name des Secrets in Großschreibung
|
|
|
|
- chmod 0400 ./id_ed25519
|
|
|
|
# Abhängigkeiten
|
|
|
|
- pip install pykeepass Jinja2 markupsafe jmespath --user
|
2024-05-08 17:29:51 +02:00
|
|
|
- ansible-galaxy install -r requirements.yaml
|
2024-07-09 17:35:56 +02:00
|
|
|
# Doing
|
|
|
|
- ansible-lint --version
|
2023-11-07 16:35:27 +01:00
|
|
|
- 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-07-09 17:35:56 +02:00
|
|
|
- event: [push, pull_request, cron, pull_request_closed, tag, release, manual]
|
2024-05-06 23:36:28 +02:00
|
|
|
evaluate: 'CI_COMMIT_AUTHOR_EMAIL != "renovate@mgrote.net"'
|
2024-02-06 21:03:15 +01:00
|
|
|
...
|