From 65b009b15d107841e9595d5f61a2368eb1d43f7c Mon Sep 17 00:00:00 2001 From: John Simons Date: Mon, 1 Dec 2025 10:13:56 +1000 Subject: [PATCH 1/2] vitest and converage need to be update in sync --- renovate-config/ServicePulse/config.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 renovate-config/ServicePulse/config.json diff --git a/renovate-config/ServicePulse/config.json b/renovate-config/ServicePulse/config.json new file mode 100644 index 000000000..8fc9d0b78 --- /dev/null +++ b/renovate-config/ServicePulse/config.json @@ -0,0 +1,17 @@ +{ + "extends": [ + "./default-repo-config.json" + ], + "packageRules": [ + { + "matchDatasources": [ + "npm" + ], + "matchPackageNames": [ + "vitest", + "@vitest/coverage-v8" + ], + "groupName": "vitest grouping" + } + ] +} \ No newline at end of file From a60d6395f1c601ed8a458f23a50848d49c782791 Mon Sep 17 00:00:00 2001 From: David Boike Date: Mon, 1 Dec 2025 08:33:02 -0600 Subject: [PATCH 2/2] Simpler with renovate.json5 --- .github/renovate.json5 | 13 +++++++++++++ renovate-config/ServicePulse/config.json | 17 ----------------- 2 files changed, 13 insertions(+), 17 deletions(-) create mode 100644 .github/renovate.json5 delete mode 100644 renovate-config/ServicePulse/config.json diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 000000000..5abf28d40 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,13 @@ +{ + packageRules: [ + { + matchDatasources": ["npm"], + matchPackageNames: [ + "vitest", + "@vitest/coverage-v8" + ], + groupName: "vitest", + groupSlug: "vitest-group" + } + ] +} diff --git a/renovate-config/ServicePulse/config.json b/renovate-config/ServicePulse/config.json deleted file mode 100644 index 8fc9d0b78..000000000 --- a/renovate-config/ServicePulse/config.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "extends": [ - "./default-repo-config.json" - ], - "packageRules": [ - { - "matchDatasources": [ - "npm" - ], - "matchPackageNames": [ - "vitest", - "@vitest/coverage-v8" - ], - "groupName": "vitest grouping" - } - ] -} \ No newline at end of file