From 916eaf384844e214aaa4321dbdf3c1be62571fed Mon Sep 17 00:00:00 2001 From: "gandalf-the-greybeard[bot]" <266323920+gandalf-the-greybeard[bot]@users.noreply.github.com> Date: Sat, 7 Mar 2026 19:01:26 +0000 Subject: [PATCH] Enhance Renovate configuration (#4) - Target main branch explicitly - Set weekly schedule (weekends) - Limit concurrent PRs to 10 - Group minor/patch updates for npm and github-actions to reduce PR noise Ref: PRI-16 Co-authored-by: Null Pointer Nancy Co-authored-by: Claude Opus 4.6 --- renovate.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 22a9943..9ca1ba1 100644 --- a/renovate.json +++ b/renovate.json @@ -1,4 +1,19 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended"] + "extends": ["config:recommended"], + "baseBranches": ["main"], + "schedule": ["every weekend"], + "prConcurrentLimit": 10, + "packageRules": [ + { + "matchManagers": ["npm"], + "matchUpdateTypes": ["minor", "patch"], + "groupName": "npm minor and patch" + }, + { + "matchManagers": ["github-actions"], + "matchUpdateTypes": ["minor", "patch"], + "groupName": "github-actions minor and patch" + } + ] }