From 7d6f71f4e48526d7c5ed4829e76d17cf313ebbd9 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 14 Jan 2026 23:42:20 +0000 Subject: [PATCH] chore(config): migrate config renovate.json --- renovate.json | 45 +++++++++++++++++++++++++++++++++------------ 1 file changed, 33 insertions(+), 12 deletions(-) diff --git a/renovate.json b/renovate.json index a80f12e..a9f60c2 100644 --- a/renovate.json +++ b/renovate.json @@ -6,11 +6,15 @@ "enabled": true }, "github-actions": { - "managerFilePatterns": ["/.gitea/workflows/.+\\.ya?ml$/"] + "managerFilePatterns": [ + "/.gitea/workflows/.+\\.ya?ml$/" + ] }, "lockFileMaintenance": { "enabled": true, - "schedule": ["before 5am on monday"] + "schedule": [ + "before 5am on monday" + ] }, "dependencyDashboard": true, "dependencyDashboardAutoclose": false, @@ -18,26 +22,43 @@ "packageRules": [ { "description": "Group all GitHub Actions updates", - "matchManagers": ["github-actions"], + "matchManagers": [ + "github-actions" + ], "groupName": "github-actions" }, { "description": "Group stable NixOS ecosystem inputs", - "matchManagers": ["nix"], - "matchPackagePatterns": ["^nixpkgs$", "^home-manager$", "^nix-darwin$"], - "groupName": "nix-stable-ecosystem" + "matchManagers": [ + "nix" + ], + "groupName": "nix-stable-ecosystem", + "matchPackageNames": [ + "/^nixpkgs$/", + "/^home-manager$/", + "/^nix-darwin$/" + ] }, { "description": "Group unstable NixOS ecosystem inputs", - "matchManagers": ["nix"], - "matchPackagePatterns": ["nixpkgs-unstable", "home-manager-unstable"], - "groupName": "nix-unstable-ecosystem" + "matchManagers": [ + "nix" + ], + "groupName": "nix-unstable-ecosystem", + "matchPackageNames": [ + "/nixpkgs-unstable/", + "/home-manager-unstable/" + ] }, { "description": "Ignore private Gitea inputs (handle separately)", - "matchManagers": ["nix"], - "matchPackagePatterns": ["google-cookie-retrieval"], - "enabled": false + "matchManagers": [ + "nix" + ], + "enabled": false, + "matchPackageNames": [ + "/google-cookie-retrieval/" + ] } ] } -- 2.49.1