chore(config): migrate Renovate config #37

Merged
johno merged 1 commits from renovate/migrate-config into main 2026-01-14 15:43:18 -08:00
Showing only changes of commit 7d6f71f4e4 - Show all commits

View File

@@ -6,11 +6,15 @@
"enabled": true "enabled": true
}, },
"github-actions": { "github-actions": {
"managerFilePatterns": ["/.gitea/workflows/.+\\.ya?ml$/"] "managerFilePatterns": [
"/.gitea/workflows/.+\\.ya?ml$/"
]
}, },
"lockFileMaintenance": { "lockFileMaintenance": {
"enabled": true, "enabled": true,
"schedule": ["before 5am on monday"] "schedule": [
"before 5am on monday"
]
}, },
"dependencyDashboard": true, "dependencyDashboard": true,
"dependencyDashboardAutoclose": false, "dependencyDashboardAutoclose": false,
@@ -18,26 +22,43 @@
"packageRules": [ "packageRules": [
{ {
"description": "Group all GitHub Actions updates", "description": "Group all GitHub Actions updates",
"matchManagers": ["github-actions"], "matchManagers": [
"github-actions"
],
"groupName": "github-actions" "groupName": "github-actions"
}, },
{ {
"description": "Group stable NixOS ecosystem inputs", "description": "Group stable NixOS ecosystem inputs",
"matchManagers": ["nix"], "matchManagers": [
"matchPackagePatterns": ["^nixpkgs$", "^home-manager$", "^nix-darwin$"], "nix"
"groupName": "nix-stable-ecosystem" ],
"groupName": "nix-stable-ecosystem",
"matchPackageNames": [
"/^nixpkgs$/",
"/^home-manager$/",
"/^nix-darwin$/"
]
}, },
{ {
"description": "Group unstable NixOS ecosystem inputs", "description": "Group unstable NixOS ecosystem inputs",
"matchManagers": ["nix"], "matchManagers": [
"matchPackagePatterns": ["nixpkgs-unstable", "home-manager-unstable"], "nix"
"groupName": "nix-unstable-ecosystem" ],
"groupName": "nix-unstable-ecosystem",
"matchPackageNames": [
"/nixpkgs-unstable/",
"/home-manager-unstable/"
]
}, },
{ {
"description": "Ignore private Gitea inputs (handle separately)", "description": "Ignore private Gitea inputs (handle separately)",
"matchManagers": ["nix"], "matchManagers": [
"matchPackagePatterns": ["google-cookie-retrieval"], "nix"
"enabled": false ],
"enabled": false,
"matchPackageNames": [
"/google-cookie-retrieval/"
]
} }
] ]
} }