Skip to content

Commit

Permalink
chore(config): migrate config .github/renovate.json5
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and tuunit committed Nov 23, 2024
1 parent 4004ffd commit c95f57d
Showing 1 changed file with 33 additions and 27 deletions.
60 changes: 33 additions & 27 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,39 +1,45 @@
{
"extends": [
"config:base"
extends: [
'config:recommended',
],
"automerge": false,
"assignees": [
"pierluigilenoci"
automerge: false,
assignees: [
'pierluigilenoci',
],
"schedule": [
"before 5am every day"
schedule: [
'before 5am',
],
"packageRules": [
packageRules: [
{
"description": "Group all patch updates per package",
"updateTypes": ["patch"],
"groupName": "all-patch-updates",
"bumpVersion": "patch"
description: 'Group all patch updates per package',
matchUpdateTypes: [
'patch',
],
groupName: 'all-patch-updates',
bumpVersion: 'patch',
},
{
"description": "Group all minor updates per package",
"updateTypes": ["minor"],
"groupName": "all-minor-updates",
"bumpVersion": "patch"
description: 'Group all minor updates per package',
matchUpdateTypes: [
'minor',
],
groupName: 'all-minor-updates',
bumpVersion: 'patch',
},
{
"description": "Group all major updates per package",
"updateTypes": ["major"],
"groupName": "all-major-updates",
"bumpVersion": "patch"
}
description: 'Group all major updates per package',
matchUpdateTypes: [
'major',
],
groupName: 'all-major-updates',
bumpVersion: 'patch',
},
],
"platformAutomerge": true,
"lockFileMaintenance": {
"enabled": true
platformAutomerge: true,
lockFileMaintenance: {
enabled: true,
},
"baseBranches": [
"main"
]
baseBranches: [
'main',
],
}

0 comments on commit c95f57d

Please sign in to comment.