From 373dbfce2eaac2abedfb9bfa58489e4b65cad986 Mon Sep 17 00:00:00 2001 From: Djeex Date: Sun, 23 Aug 2026 00:02:11 +0200 Subject: [PATCH] Add Renovate config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same policy as adguard-cidre: patch-level Dockerfile bumps automerge, minor/major get a labeled PR, vulnerability alerts labeled bug. No pip_requirements rule — this repo has no Python dependencies to manage. Still needed on the Gitea/Renovate side (manual, not done here): uncomment socat-proxy in the shared ~/renovate/config.js repositories array on stockeex, and create the bot/major/minor/bug labels in this repo's Issues → Labels (Renovate silently drops labels that don't already exist). Co-Authored-By: Claude Sonnet 5 --- renovate.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..0b79022 --- /dev/null +++ b/renovate.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "timezone": "Europe/Paris", + "labels": ["bot"], + "packageRules": [ + { + "matchManagers": ["dockerfile"], + "matchUpdateTypes": ["patch"], + "automerge": true + }, + { + "matchUpdateTypes": ["major"], + "addLabels": ["major"] + }, + { + "matchUpdateTypes": ["minor"], + "addLabels": ["minor"] + } + ], + "vulnerabilityAlerts": { + "enabled": true, + "addLabels": ["bug"] + } +}