From 69a29bb0ee7800614c994053770899ab908aa2e7 Mon Sep 17 00:00:00 2001 From: eneller Date: Wed, 22 Oct 2025 11:51:35 +0000 Subject: [PATCH] renovate (dependabot) --- renovate/compose.yml | 8 ++++++++ renovate/config.example.js | 10 ++++++++++ 2 files changed, 18 insertions(+) create mode 100644 renovate/compose.yml create mode 100644 renovate/config.example.js diff --git a/renovate/compose.yml b/renovate/compose.yml new file mode 100644 index 0000000..5342d4d --- /dev/null +++ b/renovate/compose.yml @@ -0,0 +1,8 @@ +name: renovate +services: + renovate: + image: renovate/renovate + volumes: + - ./config.js:/usr/src/app/config.js + environment: + - LOG_LEVEL=debug diff --git a/renovate/config.example.js b/renovate/config.example.js new file mode 100644 index 0000000..841bac0 --- /dev/null +++ b/renovate/config.example.js @@ -0,0 +1,10 @@ +module.exports = { + platform: 'gitea', + endpoint: 'https://git.example.com/api/v1/', + token: '', + onboarding: true, + autodiscover: true, + configFileNames: [".gitea/renovate.json"] + +}; +