From 960c0700a396c87ad9a1345d5404dd3958a6dfb6 Mon Sep 17 00:00:00 2001 From: stijnmoreels <9039753+stijnmoreels@users.noreply.github.com> Date: Fri, 21 Feb 2025 12:27:39 +0100 Subject: [PATCH 1/4] chore(renovate): correct config w/ rangeStrategy, issue title & labels --- .github/renovate.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index c035400..0e1d076 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,6 +1,10 @@ { + "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:base"], "prCreation": "not-pending", - "rangeStrategy": "increase", - "dependencyDashboard": true + "rangeStrategy": "widen", + "separateMajorMinor": true, + "dependencyDashboard": true, + "dependencyDashboardTitle": "📦 [Renovate] dependency dashboard", + "labels": ["dependencies", "management"] } \ No newline at end of file From 6de79c606cf52ceb4f3c6110dbc877f5bb034735 Mon Sep 17 00:00:00 2001 From: Stijn Moreels <9039753+stijnmoreels@users.noreply.github.com> Date: Fri, 21 Feb 2025 13:47:21 +0100 Subject: [PATCH 2/4] chore(deps): ignore older codit testing framework deps --- .github/renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 0e1d076..c6a576f 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -3,8 +3,9 @@ "extends": ["config:base"], "prCreation": "not-pending", "rangeStrategy": "widen", + "ignoreDeps": ["Codit.Testing.*"], "separateMajorMinor": true, "dependencyDashboard": true, "dependencyDashboardTitle": "📦 [Renovate] dependency dashboard", "labels": ["dependencies", "management"] -} \ No newline at end of file +} From ecad12603909e159a37c9a0009cc31e42b98c77b Mon Sep 17 00:00:00 2001 From: Stijn Moreels <9039753+stijnmoreels@users.noreply.github.com> Date: Tue, 25 Feb 2025 06:30:41 +0100 Subject: [PATCH 3/4] chore(deps): always require approval --- .github/renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index c6a576f..70ccfea 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,6 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:base"], + "extends": ["config:base", ":dependencyDashboardApproval"], "prCreation": "not-pending", "rangeStrategy": "widen", "ignoreDeps": ["Codit.Testing.*"], From da3b5e815c5b4d928c8682133d86344a8928bf3e Mon Sep 17 00:00:00 2001 From: Stijn Moreels <9039753+stijnmoreels@users.noreply.github.com> Date: Tue, 25 Feb 2025 07:19:17 +0100 Subject: [PATCH 4/4] Update renovate.json --- .github/renovate.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 70ccfea..7ccca6e 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -4,6 +4,9 @@ "prCreation": "not-pending", "rangeStrategy": "widen", "ignoreDeps": ["Codit.Testing.*"], + "ignorePaths": [ + "**/Arcus.Testing.Sample.*/**", + ], "separateMajorMinor": true, "dependencyDashboard": true, "dependencyDashboardTitle": "📦 [Renovate] dependency dashboard",