From 072676a63417e976223413bcb8d9c337ac9f0545 Mon Sep 17 00:00:00 2001 From: Yan Date: Tue, 16 Sep 2025 23:40:13 -0700 Subject: [PATCH] chore: configure updates for public-types only TICKET: DX-1800 --- .github/renovate.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 2950d037ba..11acf7f00d 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -2,5 +2,17 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["github>BitGo/gha-renovate-bot//presets/default"], "baseBranches": ["master"], - "enabledManagers": ["github-actions", "regex"] + "enabledManagers": ["github-actions", "regex", "npm"], + "packageRules": [ + { + "description": "Disable all npm dependencies by default", + "matchManagers": ["npm"], + "enabled": false + }, + { + "description": "Enable updates only for @bitgo/public-types", + "matchPackageNames": ["@bitgo/public-types"], + "enabled": true + } + ] }