From 781374d2ac32858df4db7440ba6e14c3a8045cc0 Mon Sep 17 00:00:00 2001 From: Daniel Girtler Date: Fri, 24 Jul 2026 11:46:04 +1000 Subject: [PATCH] Fix renovate auto merge config --- renovate.json | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/renovate.json b/renovate.json index 6c96b6298a..819bf45786 100644 --- a/renovate.json +++ b/renovate.json @@ -12,7 +12,9 @@ { "customType": "regex", "description": "Track runtime Python deps via Arch Linux repos instead of PyPI", - "managerFilePatterns": ["**/pyproject.toml"], + "managerFilePatterns": [ + "**/pyproject.toml" + ], "matchStrings": [ "\"(?pyparted|pydantic|cryptography|textual|markdown-it-py|linkify-it-py)==(?[^\"]+)\"" ], @@ -24,7 +26,9 @@ { "customType": "regex", "description": "Track systemd_python via Arch Linux repos (different package name)", - "managerFilePatterns": ["**/pyproject.toml"], + "managerFilePatterns": [ + "**/pyproject.toml" + ], "matchStrings": [ "\"systemd_python==(?[^\"]+)\"" ], @@ -36,9 +40,6 @@ ], "packageRules": [ { - "matchDepTypes": [ - "devDependencies" - ], "matchPackageNames": [ "mypy", "ruff", @@ -47,13 +48,20 @@ "pre-commit/mirrors-mypy", "dev/flake8", "pycqa/flake8", - "astral-sh/ruff-pre-commit" + "astral-sh/ruff-pre-commit", + "astral-sh/ruff-action", + "actions/checkout", + "actions/setup-python", + "pytest", + "pylint" ], "automerge": true }, { "description": "Disable PyPI updates for runtime deps tracked via Arch repos", - "matchDatasources": ["pypi"], + "matchDatasources": [ + "pypi" + ], "matchPackageNames": [ "pyparted", "pydantic",