From 74cbde49d84df600211cd8064d35734deeb52947 Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Mon, 12 May 2025 17:25:10 +0000 Subject: [PATCH] fix(github-actions): more `cross-repo angular dependencies` fixes - `matchDepNames` conflicts with `matchDepNames` - `@angular/benchpress` is not released as `next` this is causing a dependency lookup warning --- renovate-presets/default.json5 | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/renovate-presets/default.json5 b/renovate-presets/default.json5 index 3a244ca91..fc9ae5108 100644 --- a/renovate-presets/default.json5 +++ b/renovate-presets/default.json5 @@ -66,8 +66,19 @@ followTag: 'next', separateMajorMinor: false, schedule: ['at any time'], - matchDepNames: ['@angular-devkit/**', '@angular/**', '@schematics/**', 'ng-packagr'], - matchPackageNames: ['angular/**'], + matchPackageNames: [ + '@angular-devkit/**', + '@angular/**', + '@schematics/**', + 'angular/**', + 'ng-packagr', + ], + }, + + // @angular/benchpress is not released as 'next' + { + followTag: null, + matchDepNames: ['@angular/benchpress'], }, // Disable 'next' tag tracking on non-main branches