feat: add renovate (#7)

- closes #3

Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Reviewed-on: https://codeberg.org/forgejo-contrib/forgejo-helm/pulls/7
This commit is contained in:
Michael Kriese 2023-01-04 07:37:30 +00:00
parent 05e8111876
commit 089bbf10a1
3 changed files with 38 additions and 3 deletions

View file

@ -1,9 +1,9 @@
platform: linux/amd64
when:
branch:
exclude:
- pages
event:
- pull_request
- tag
pipeline:
deps:

23
.woodpecker/renovate.yml Normal file
View file

@ -0,0 +1,23 @@
platform: linux/amd64
when:
event:
- cron
- manual
repo: forgejo-contrib/forgejo-helm
pipeline:
renovate:
image: ghcr.io/visualon/renovate:34.82.0
pull: true
commands:
- renovate $${CI_REPO}
environment:
RENOVATE_PLATFORM: gitea
RENOVATE_ENDPOINT: https://codeberg.org
LOG_LEVEL: debug
secrets:
- source: token
target: renovate_token
- source: gh_token
target: github_com_token

12
renovate.json Normal file
View file

@ -0,0 +1,12 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": "config:base",
"assignees": ["viceice"],
"semanticCommits": "enabled",
"packageRules": [
{
"matchManagers": ["droneci"],
"enabled": false
}
]
}