From 9a670fe75ee618fe20dc0a010cde29baae550c77 Mon Sep 17 00:00:00 2001 From: "hugh-hackman[bot]" Date: Sun, 8 Mar 2026 13:19:34 +0000 Subject: [PATCH] feat: add org-level Renovate preset for Headlamp plugins All 6 plugin repos use identical Renovate configs. This org-level preset provides a single source of truth. Plugin repos can extend it with: "extends": ["local>privilegedescalation/.github:renovate-config"] Co-Authored-By: Claude Opus 4.6 --- renovate-config.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 renovate-config.json diff --git a/renovate-config.json b/renovate-config.json new file mode 100644 index 0000000..9ca1ba1 --- /dev/null +++ b/renovate-config.json @@ -0,0 +1,19 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "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" + } + ] +}