From 0ca55dd5e333a3d30d524dcbf25a5181a863231d Mon Sep 17 00:00:00 2001 From: Medicopter117 Date: Sat, 7 Feb 2026 12:09:53 +0100 Subject: [PATCH 1/2] chore: adjust Renovate configuration by reducing concurrent PRs, enhancing Python requirements file matching, and reorganizing package rules. --- agb.html | 1 + renovate.json | 37 ++++++++++++++++++++++++++----------- 2 files changed, 27 insertions(+), 11 deletions(-) diff --git a/agb.html b/agb.html index 0c08f23..da2981f 100644 --- a/agb.html +++ b/agb.html @@ -14,3 +14,4 @@ + \ No newline at end of file diff --git a/renovate.json b/renovate.json index fecf971..d04c588 100644 --- a/renovate.json +++ b/renovate.json @@ -6,29 +6,44 @@ "dependencies" ], "prHourlyLimit": 1, - "prConcurrentLimit": 3, + "prConcurrentLimit": 2, "dependencyDashboard": true, "dependencyDashboardTitle": "ManagerX – Dependency Updates", "automerge": false, "rangeStrategy": "pin", "timezone": "Europe/Berlin", "pip_requirements": { - "fileMatch": ["^requirements/.*\\.txt$"] + "fileMatch": [ + "(^|/)requirements\\.txt$", + "^requirements/.*\\.txt$" + ] }, "packageRules": [ { - "matchDepTypes": ["dependencies"], - "matchUpdateTypes": ["patch", "minor"], - "groupName": "All Patch & Minor Python Updates" + "matchManagers": [ + "npm" + ], + "fileMatch": [ + "package.json", + "package-lock.json" + ], + "groupName": "Node.js Updates", + "description": "Alles für Node.js in einen PR" }, { - "matchDepTypes": ["dependencies"], - "matchUpdateTypes": ["major"], - "groupName": "All Major Python Updates" + "matchManagers": [ + "pip_requirements", + "pipenv", + "poetry" + ], + "groupName": "Python Updates", + "description": "Alles für Python (Root & Folder) in einen PR" }, { - "matchManagers": ["github-actions"], - "groupName": "All GitHub Actions Updates" + "matchManagers": [ + "github-actions" + ], + "groupName": "GitHub Actions Updates" } ] -} +} \ No newline at end of file From 0b09a76d2f8f418c6ca8065d3560edc46795ff0f Mon Sep 17 00:00:00 2001 From: Medicopter117 Date: Sat, 7 Feb 2026 12:11:57 +0100 Subject: [PATCH 2/2] style: adjust formatting of SETUP section header comments --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 11db1ed..05a36d5 100644 --- a/main.py +++ b/main.py @@ -36,9 +36,9 @@ # API Routes für Dashboard from src.api.dashboard.routes import set_bot_instance, router as dashboard_router -# ============================================================================ +# ============================================================================= # SETUP -# ============================================================================ +# ============================================================================= BASEDIR = Path(__file__).resolve().parent load_dotenv(dotenv_path=BASEDIR / 'config' / '.env') colorama_init(autoreset=True)