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"] + +}; +