From b917844ecdc245f949cbdd7e100ed6d0ee69629e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 20:23:36 +0000 Subject: [PATCH] chore(config): migrate config .github/renovate.json --- .github/renovate.json | 37 ++++++++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 11 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index dc5fe41..eebe0ae 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,37 +1,52 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "github>scop/common", + "github>scop/common" ], "pip_requirements": { - "fileMatch": ["(^|/)requirements[\\w-]*\\.txt$"] + "managerFilePatterns": [ + "/(^|/)requirements[\\w-]*\\.txt$/" + ] }, - "regexManagers": [ + "customManagers": [ { - "fileMatch": ["^\\.pre-commit-config\\.yaml$"], - "matchStrings": ["(?[\\w-]+)(?==[a-z0-9.]+)"], + "customType": "regex", + "managerFilePatterns": [ + "/^\\.pre-commit-config\\.yaml$/" + ], + "matchStrings": [ + "(?[\\w-]+)(?==[a-z0-9.]+)" + ], "datasourceTemplate": "pypi" } ], "packageRules": [ { - "matchFiles": ["requirements-test.txt"], + "matchFileNames": [ + "requirements-test.txt" + ], "semanticCommitType": "test" }, { - "matchManagers": ["pre-commit"], + "matchManagers": [ + "pre-commit" + ], "commitMessageTopic": "{{depName}}", "semanticCommitScope": "pre-commit" }, { - "matchPackagePatterns": ["(^|/)gitlint$"], "groupName": "gitlint", - "versioning": "pep440" + "versioning": "pep440", + "matchPackageNames": [ + "/(^|/)gitlint$/" + ] }, { - "matchPackagePatterns": ["(^|/)ruff(-pre-commit)?$"], "groupName": "ruff", - "versioning": "pep440" + "versioning": "pep440", + "matchPackageNames": [ + "/(^|/)ruff(-pre-commit)?$/" + ] } ] }