Skip to content

Commit

Permalink
chore(config): migrate config renovate.json
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and adrianriobo committed Oct 2, 2023
1 parent 6f86b62 commit 056d41f
Showing 1 changed file with 21 additions and 8 deletions.
29 changes: 21 additions & 8 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",
":maintainLockFilesWeekly",
":enablePreCommit",
"group:all",
Expand All @@ -13,24 +13,37 @@
"packageRules": [
{
"description": "Enable go indirect dependencies",
"matchManagers": ["gomod"],
"matchDepTypes": ["indirect"],
"matchManagers": [
"gomod"
],
"matchDepTypes": [
"indirect"
],
"enabled": true
},
{
"description": "Group go major upgrades",
"matchManagers": ["gomod"],
"matchUpdateTypes": ["major"],
"matchManagers": [
"gomod"
],
"matchUpdateTypes": [
"major"
],
"groupName": "go major updates"
},
{
"description": "Group patch updates",
"matchUpdateTypes": ["patch"],
"matchUpdateTypes": [
"patch"
],
"groupName": "Patch updates",
"automerge": true,
"platformAutomerge": true
}
],
"postUpdateOptions": ["gomodUpdateImportPaths", "gomodTidy"],
"postUpdateOptions": [
"gomodUpdateImportPaths",
"gomodTidy"
],
"configMigration": true
}
}

0 comments on commit 056d41f

Please sign in to comment.