From 17da62cc0fd5cf727baff3b96c91b716afbc037a Mon Sep 17 00:00:00 2001 From: Mathieu Gamache Date: Tue, 27 Aug 2024 14:11:21 -0400 Subject: [PATCH 1/2] Update renovate.json to use shared config --- renovate.json | 49 ++++--------------------------------------------- 1 file changed, 4 insertions(+), 45 deletions(-) diff --git a/renovate.json b/renovate.json index ffb87b7..6647631 100644 --- a/renovate.json +++ b/renovate.json @@ -1,47 +1,6 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "platform": "github", - "labels": ["renovate"], - "extends": [ - "config:base", - ":rebaseStalePrs" - ], - "enabledManagers": [ - "nuget", - "github-actions" - ], - "stabilityDays": 3, - "prHourlyLimit": 0, - "prConcurrentLimit": 0, - "branchConcurrentLimit": 0, - "dependencyDashboard": false, - "gitAuthor": "Renovate Bot ", - "packageRules": [ - { - "matchManagers": ["nuget"], - "excludePackagePatterns": ["^Microsoft\\.Extensions\\.", "^System\\.", "^dotnet-sdk$"], - "groupName": "NuGet dependencies" - }, - { - "matchManagers": ["nuget"], - "matchPackagePatterns": ["^Microsoft\\.Extensions\\.", "^System\\."], - "groupName": "Ignored NuGet dependencies", - "description": "These packages are usually set to a user-defined minimal supported version such as 6.0.0 for .NET 6, and they are overriden by consuming applications", - "enabled": false - }, - { - "matchPackageNames": ["dotnet-sdk"], - "groupName": "Dotnet SDK", - "description": "Only update patch and minor for the dotnet SDK version within the global.json", - "extends": [":disableMajorUpdates"] - }, - { - "matchManagers": ["github-actions"], - "groupName": "GitHub actions dependencies" - } - ], - "vulnerabilityAlerts": { - "enabled": true, - "labels": ["security"] + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "github>gsoft-inc/renovate-config" + ] } -} \ No newline at end of file From 7aebc54db54b42ebcbb3c7ca2c0afab8b9b1e7e7 Mon Sep 17 00:00:00 2001 From: Mathieu Gamache Date: Tue, 27 Aug 2024 14:53:26 -0400 Subject: [PATCH 2/2] Update renovate.json --- renovate.json | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/renovate.json b/renovate.json index 6647631..dd5a693 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,20 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "github>gsoft-inc/renovate-config" - ] - } + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "github>gsoft-inc/renovate-config" + ], + "packageRules": [ + { + "matchManagers": [ + "nuget" + ], + "matchPackagePatterns": [ + "^Microsoft\\.Extensions\\.", + "^System\\." + ], + "groupName": "Ignored NuGet dependencies", + "description": "These packages are usually set to a user-defined minimal supported version such as 6.0.0 for .NET 6, and they are overriden by consuming applications", + "enabled": false + } + ] +}