diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 468aef1..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,38 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "nuget" - directories: - - "/Difficalcy" - - "/Difficalcy.Catch" - - "/Difficalcy.Catch.Tests" - - "/Difficalcy.Mania" - - "/Difficalcy.Mania.Tests" - - "/Difficalcy.Osu" - - "/Difficalcy.Osu.Tests" - - "/Difficalcy.Taiko" - - "/Difficalcy.Taiko.Tests" - - "/Difficalcy.Tests" - schedule: - interval: "weekly" - groups: - test-tools: - applies-to: version-updates - patterns: - - "xunit*" - - "Microsoft.NET.Test.Sdk" - osu-rulesets: - applies-to: version-updates - patterns: - - "ppy.osu.Game.Rulesets*" - - package-ecosystem: "pip" - directory: "/docs" - schedule: - interval: "weekly" - - package-ecosystem: "docker" - directory: "/" - schedule: - interval: "weekly" - - package-ecosystem: "github-actions" - directory: "/.github/workflows" - schedule: - interval: "weekly" diff --git a/renovate.json b/renovate.json index 5db72dd..3f20b7a 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,26 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" + ], + "packageRules": [ + { + "matchManagers": [ + "nuget" + ], + "matchPackageNames": [ + "ppy.osu.Game.Rulesets*" + ], + "groupName": "osu-rulesets" + }, + { + "matchManagers": [ + "nuget" + ], + "matchPackageNames": [ + "xunit*", + "Microsoft.Net.Test.Sdk" + ], + "groupName": "test-tools" + } ] }