From b99ee270b057cd5bd400297334c5a6796c5d1d28 Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Fri, 18 Jul 2025 13:29:35 -0400 Subject: [PATCH] ci: prevent renovate from incorrectly bumping rapidsai docker images --- renovate.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 4bd832f5..c02dfddf 100644 --- a/renovate.json +++ b/renovate.json @@ -1,4 +1,10 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:base"] + "extends": ["config:base"], + "packageRules": [ + { + "matchPackagePatterns": ["^rapidsai/"], + "enabled": false + } + ] }