From 67d69686f9c3b3e49234c6c71681c5e301cb1dda Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 1 May 2024 15:35:59 -0500 Subject: [PATCH] chore(ci): Ignore openssl deps We excluded the packages in #13731 but that just means they fell into the default logic, rather than bein ignored. This at least made it easier to reject the change. This shouldp revent the PR from being created. --- .github/renovate.json5 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 50d5e2f0aeb0..7fdcf0d5cc40 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -8,6 +8,8 @@ ignorePaths: [ '**/tests/**', ], + // See rust-lang/cargo#13546 and openssl/openssl#23376 for the exclusion + ignoreDeps: ['openssl', 'openssl-src', 'openssl-sys'], customManagers: [ { customType: 'regex', @@ -78,8 +80,6 @@ matchUpdateTypes: [ 'patch', ], - // See rust-lang/cargo#13546 and openssl/openssl#23376 for the exclusion - excludePackageNames: ['openssl', 'openssl-src', 'openssl-sys'], automerge: false, groupName: 'compatible', }, @@ -91,8 +91,6 @@ matchUpdateTypes: [ 'minor', ], - // See rust-lang/cargo#13546 and openssl/openssl#23376 for the exclusion - excludePackageNames: ['openssl', 'openssl-src', 'openssl-sys'], automerge: false, groupName: 'compatible', },