From d5330e74cfc855856bed26fc6b6f2fe3dde2eadd Mon Sep 17 00:00:00 2001 From: Jesse Attas Date: Mon, 20 Nov 2023 14:12:05 -0600 Subject: [PATCH] Update Renovate Nuget config to group bunit dependencies (#1676) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Pull Request ## ๐Ÿคจ Rationale Now that we established Renovate to update nuget deps in #1675 I noticed on the dependency dashboard #1537 that the 3 bunit dependencies will be updated in separate PRs. We want them to be updated together. Here's what the dependency dashboard showed before this change: --- ![image](https://github.com/ni/nimble/assets/10500124/044dbb45-e10a-4359-8e2e-b7b9a64356f3) --- ## ๐Ÿ‘ฉโ€๐Ÿ’ป Implementation Add a package rule for any nuget package that starts with "bunit". I considered grouping all minor/patch nuget dependencies in one group to reduce the PR noise, similar to what we did for npm. We may yet decide to do this but I wanted to get some runtime with the default configuration and hear the team's feedback first. ## ๐Ÿงช Testing I will inspect the dashboard when this completes to ensure it works as intended. ## โœ… Checklist - [ ] I have updated the project documentation to reflect my changes or determined no changes are needed. --- .github/renovate.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index fd4262f671..19d5313cfa 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -39,6 +39,14 @@ "storybook" ], "enabled": true + }, + { + "groupName": "nuget bunit dependencies", + "matchManagers": ["nuget"], + "matchPackagePatterns":[ + "^bunit" + ], + "enabled": true } ] }