Skip to content

Commit

Permalink
chore(tool): migrate renovate config
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and provokateurin committed Aug 6, 2024
1 parent a4d7f37 commit 438a06e
Showing 1 changed file with 17 additions and 36 deletions.
53 changes: 17 additions & 36 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices"
],
"labels": [
"dependencies"
],
"extends": ["config:best-practices"],
"labels": ["dependencies"],
"rangeStrategy": "bump",
"lockFileMaintenance": {
"enabled": true,
Expand All @@ -15,35 +11,27 @@
{
"matchManagers": ["pub"],
"matchDatasources": ["dart-version", "flutter-version"],
"matchUpdateTypes": [
"minor",
"patch"
],
"matchUpdateTypes": ["minor", "patch"],
"enabled": false
},
{
"matchManagers": ["pub"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": [
"minor",
"patch"
],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"excludeDepNames": [
"app",
"dynamite_end_to_end_test",
"dynamite_petstore_example",
"neon_lints",
"nextcloud_test"
"matchDepNames": [
"!app",
"!dynamite_end_to_end_test",
"!dynamite_petstore_example",
"!neon_lints",
"!nextcloud_test"
],
"enabled": false
},
{
"matchManagers": ["pub"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": [
"patch"
],
"matchUpdateTypes": ["patch"],
"matchCurrentVersion": "/^0/",
"enabled": false
},
Expand All @@ -55,34 +43,27 @@
},
{
"groupName": "built_value",
"matchPackagePatterns": "^built"
"matchPackageNames": ["/^built/"]
},
{
"groupName": "go_router",
"matchPackagePatterns": "^go_router"
"matchPackageNames": ["/^go_router/"]
},
{
"groupName": "sqflite",
"matchPackagePatterns": "^sqflite"
"matchPackageNames": ["/^sqflite/"]
},
{
"groupName": "unifiedpush",
"matchPackagePatterns": "^unifiedpush"
"matchPackageNames": ["/^unifiedpush/"]
},
{
"groupName": "xml_serializable",
"matchPackageNames": [
"xml_annotation",
"xml_serializable"
]
"matchPackageNames": ["xml_annotation", "xml_serializable"]
},
{
"groupName": "test",
"matchPackageNames": [
"test",
"test_api",
"test_core"
]
"matchPackageNames": ["test", "test_api", "test_core"]
}
]
}

0 comments on commit 438a06e

Please sign in to comment.