From 1ec93a28597a151b94a4a0d4d8e6107af636e501 Mon Sep 17 00:00:00 2001 From: "gandalf-the-greybeard[bot]" Date: Sat, 7 Mar 2026 17:59:43 +0000 Subject: [PATCH] Enhance Renovate configuration - 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: 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" + } + ] } -- 2.52.0