We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 813eb88 commit 9faae86Copy full SHA for 9faae86
lib/config/presets/internal/workarounds.ts
@@ -235,7 +235,13 @@ export const presets: Record<string, Preset> = {
235
packageRules: [
236
{
237
matchDatasources: ['docker'],
238
- matchDepNames: ['node'],
+ // copied from https://github.com/renovatebot/renovate/blob/a471762e137619c06e73a678d6b63ca984da7dba/lib/config/presets/internal/group.ts#L351
239
+ matchPackageNames: [
240
+ '/(?:^|/)node$/', // node or ends with "/node, except those below"
241
+ '!calico/node',
242
+ '!docker.io/calico/node',
243
+ '!kindest/node',
244
+ ],
245
versionCompatibility: '^(?<version>[^-]+)(?<compatibility>-.*)?$',
246
versioning: 'node',
247
},
0 commit comments