Add renovate

This commit is contained in:
Kasper Juul Hermansen 2022-10-26 09:22:36 +02:00
commit d671e9383a
3 changed files with 23 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.env

11
config.json Normal file
View File

@ -0,0 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"platform": "gitea",
"endpoint": "https://git.front.kjuulh.io/api/v1/",
"autodiscover": true,
"automerge": true,
"automergeType": "pr",
"extends": [
"config:base"
]
}

11
docker-compose.yaml Normal file
View File

@ -0,0 +1,11 @@
version: '3'
services:
renovate:
image: renovate/renovate:32.64.4
env_file: .env
environment:
RENOVATE_CONFIG_FILE: "/opt/renovate/config.json"
LOG_LEVEL: info
volumes:
- "./config.json:/opt/renovate/config.json"