This commit is contained in:
parent
ae428dd945
commit
0d2c238ab8
1 changed files with 34 additions and 0 deletions
34
.drone.yml
34
.drone.yml
|
@ -0,0 +1,34 @@
|
|||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: renovate
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- cron
|
||||
- push
|
||||
- custom
|
||||
|
||||
environment:
|
||||
LOG_LEVEL: debug
|
||||
|
||||
steps:
|
||||
- name: renovate - validate config
|
||||
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-config-validator
|
||||
|
||||
- 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