From 9c53361776e5fb1193f531337afc74047797df64 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 3 Mar 2026 16:58:26 +0000 Subject: [PATCH] chore(config): migrate config renovate.json --- renovate.json | 42 +++++++++++++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/renovate.json b/renovate.json index e869cbf..efb9d9c 100644 --- a/renovate.json +++ b/renovate.json @@ -1,12 +1,18 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:base"], + "extends": [ + "config:recommended" + ], "gitAuthor": "Renovate Bot ", "branchPrefix": "renovate/", "semanticCommits": "enabled", "dependencyDashboard": true, - "labels": ["dependencies"], - "schedule": ["at any time"], + "labels": [ + "dependencies" + ], + "schedule": [ + "at any time" + ], "timezone": "UTC", "prConcurrentLimit": 10, "prCreation": "immediate", @@ -17,22 +23,40 @@ "packageRules": [ { "description": "Elixir dependencies", - "matchManagers": ["mix"], - "matchUpdateTypes": ["major", "minor", "patch"], + "matchManagers": [ + "mix" + ], + "matchUpdateTypes": [ + "major", + "minor", + "patch" + ], "groupName": null, "commitMessagePrefix": "chore(deps):" }, { "description": "Docker dependencies", - "matchManagers": ["dockerfile"], - "matchUpdateTypes": ["major", "minor", "patch"], + "matchManagers": [ + "dockerfile" + ], + "matchUpdateTypes": [ + "major", + "minor", + "patch" + ], "groupName": null, "commitMessagePrefix": "chore(deps):" }, { "description": "GitHub Actions", - "matchManagers": ["github-actions"], - "matchUpdateTypes": ["major", "minor", "patch"], + "matchManagers": [ + "github-actions" + ], + "matchUpdateTypes": [ + "major", + "minor", + "patch" + ], "groupName": null, "commitMessagePrefix": "chore(deps):" }