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/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) 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