From a2042daf5a4a64511fad50455dbea665f280b534 Mon Sep 17 00:00:00 2001 From: "gandalf-the-greybeard[bot]" Date: Sun, 15 Mar 2026 13:57:05 +0000 Subject: [PATCH] Add Renovate dependency management config Adds renovate.json matching the standard config used across other Privileged Escalation plugin repos (polaris, intel-gpu, rook, etc.). Configures recommended presets, weekend schedule, and groups minor/patch updates for npm and GitHub Actions. Ref: PRI-128 Co-Authored-By: Paperclip --- renovate.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..9ca1ba1 --- /dev/null +++ b/renovate.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" + } + ] +} -- 2.52.0