Skip to content

Commit

Permalink
Improve Renovate config
Browse files Browse the repository at this point in the history
Allow unlimited PRs

Group changes to versions.json5

Improve renovate.json5 comments
  • Loading branch information
gabrielfeo committed Jan 6, 2025
1 parent 222a1f8 commit 36964bf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"extends": [
"config:recommended"
],
// Allow unlimited PRs
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
// See https://docs.renovatebot.com/modules/manager/regex/
// Dependabot is used for all other updates.
"enabledManagers": ["regex"],
Expand All @@ -26,7 +29,8 @@
"registryUrlTemplate": "https://dl.google.com/dl/android/maven2/",
},
],
// Look for patches to older minors despite a newer minor being available
// Ensure patches to older minors are opened, even if a newer minor is available
// In versions.json5, means older minors will still be checked for a newer patch
"separateMinorPatch": true,
"packageRules": [
{
Expand All @@ -36,5 +40,10 @@
"matchFileNames": ["src/main/resources/versions\\.json5"],
"enabled": false,
},
{
// Group changes to versions.json5
"matchFileNames": ["src/main/resources/versions\\.json5"],
"groupName": "supportedVersions",
},
],
}

0 comments on commit 36964bf

Please sign in to comment.