This commit is contained in:
parent
0d2c238ab8
commit
5a26d721a5
1 changed files with 5 additions and 28 deletions
33
.drone.yml
33
.drone.yml
|
@ -1,34 +1,11 @@
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: renovate
|
name: default
|
||||||
|
|
||||||
trigger:
|
|
||||||
event:
|
|
||||||
- cron
|
|
||||||
- push
|
|
||||||
- custom
|
|
||||||
|
|
||||||
environment:
|
|
||||||
LOG_LEVEL: debug
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: renovate - validate config
|
- name: test
|
||||||
image: renovate/renovate:33.2.0
|
image: geerlingguy/docker-ubuntu1804-ansible:testing
|
||||||
# https://github.com/renovatebot/renovate/discussions/15049
|
|
||||||
commands:
|
commands:
|
||||||
- unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
- "find . -maxdepth 1 -name '*.yml' | sort | grep -v '.drone.yml' | xargs ansible-playbook --syntax-check --list-tasks"
|
||||||
- renovate-config-validator
|
- "find . -maxdepth 1 -name '*.yml' | sort | grep -v '.drone.yml' | xargs ansible-lint"
|
||||||
|
|
||||||
- name: renovate
|
|
||||||
image: renovate/renovate:33.2.0
|
|
||||||
# https://github.com/renovatebot/renovate/discussions/15049
|
|
||||||
commands:
|
|
||||||
- unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL
|
|
||||||
- renovate
|
|
||||||
|
|
||||||
environment:
|
|
||||||
RENOVATE_TOKEN:
|
|
||||||
from_secret: RENOVATE_TOKEN
|
|
||||||
GITHUB_COM_TOKEN:
|
|
||||||
from_secret: GITHUB_COM_TOKEN
|
|
Reference in a new issue