From 490807cef6ca67db31f7a2f4e25452baa3dac49d Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Tue, 24 Mar 2026 16:16:15 +0000 Subject: [PATCH] feat: extend Renovate config from org-level preset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaces the duplicated Renovate config with a simple extend from the org-level preset (privilegedescalation/.github:renovate-config). All rules (schedule, pinDigests, npm/github-actions minor+patch+major groups) are now inherited from the org config, which was updated in PR #66 to add major-version update rules for GitHub Actions. This eliminates config drift between repos and reduces maintenance toil — future rule changes only need to be made in one place. Co-Authored-By: Paperclip --- renovate.json | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/renovate.json b/renovate.json index d9ce489..08d08ca 100644 --- a/renovate.json +++ b/renovate.json @@ -1,21 +1,5 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended"], - "baseBranches": ["main"], - "schedule": ["every weekend"], - "prConcurrentLimit": 10, - "pinDigests": true, - "packageRules": [ - { - "matchManagers": ["npm"], - "matchUpdateTypes": ["minor", "patch"], - "groupName": "npm minor and patch" - }, - { - "matchManagers": ["github-actions"], - "matchUpdateTypes": ["minor", "patch"], - "groupName": "github-actions minor and patch" - } - ] + "extends": ["github>privilegedescalation/.github:renovate-config"] } -- 2.52.0