From c823c0e3653f7acf8b92f096b54d908cdbe10025 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Fri, 10 Apr 2026 17:45:35 -0400 Subject: [PATCH] fix(renovate): update config --- renovate-config.json5 | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/renovate-config.json5 b/renovate-config.json5 index 87fa41a9..2fb70834 100644 --- a/renovate-config.json5 +++ b/renovate-config.json5 @@ -58,6 +58,27 @@ "github/**" ], }, + // Group docker actions + { + "groupName": "Docker Actions", + "groupSlug": "docker-actions", + "matchManagers": [ + "github-actions" + ], + "matchPackageNames": [ + "docker/**", + ], + }, + // Group pytest + { + "groupName": "pytest", + "matchCategories": [ + "python", + ], + "matchPackageNames": [ + "pytest*", + ], + }, // combine oddstr13/jellyfin-plugin-repository-manager and pypi jprm into a single group { "groupName": "jprm", @@ -82,5 +103,16 @@ ], "versioningTemplate": "{{#if versioning}}{{{versioning}}}{{/if}}" }, + // Rust toolchain + { + "customType": "regex", + "managerFilePatterns": ["/(^|\/)rust-toolchain.toml$/"], + "matchStrings": [ + "^channel[ \\t]*=[ \\t]*\"(?[^\"\\r\\n]+)\"[ \\t]*(?:$|\\r?\\n)", + ], + "datasourceTemplate": "github-tags", + "depNameTemplate": "rust-lang/rust", + "versioningTemplate": "rust-release-channel" + }, ], }