Skip to content

Commit

Permalink
chore: migrate renovate config
Browse files Browse the repository at this point in the history
Updated renovate config with changes suggested by debug output:
* Extends recommended config instead of base config
* Uses matchPackageNames with regex instead of matchPackagePrefixes
* Uses matchPackageNames intead of matchPackagePatterns
  • Loading branch information
wlsnmrk committed Sep 29, 2024
1 parent de33ca1 commit b8e883e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"config:recommended",
":semanticCommits"
],
"prHourlyLimit": 2,
Expand All @@ -10,27 +10,27 @@
],
"packageRules": [
{
"matchPackagePatterns": [
"*"
],
"groupName": "all dependencies",
"groupSlug": "all-deps",
"automerge": true
"automerge": true,
"matchPackageNames": [
"*"
]
},
{
"matchPackagePrefixes": [
"dotnet-sdk"
"matchPackageNames": [
"dotnet-sdk{/,}**"
]
},
{
"matchPackagePrefixes": [
"GodotSharp",
"Godot.NET.Sdk"
"matchPackageNames": [
"GodotSharp{/,}**",
"Godot.NET.Sdk{/,}**"
]
},
{
"matchPackagePrefixes": [
"Chickensoft"
"matchPackageNames": [
"Chickensoft{/,}**"
],
"allowedVersions": "/^(\\d+\\.\\d+\\.\\d+)(-godot(\\d+\\.)+\\d+(-.*)?)?$/"
}
Expand Down

0 comments on commit b8e883e

Please sign in to comment.