commit d671e9383a0b41cc482de56fe8056ed0da0b80b1 Author: kjuulh Date: Wed Oct 26 09:22:36 2022 +0200 Add renovate diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c49bd7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env diff --git a/config.json b/config.json new file mode 100644 index 0000000..06c117c --- /dev/null +++ b/config.json @@ -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" + ] +} diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..b2870ae --- /dev/null +++ b/docker-compose.yaml @@ -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"