diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 5a8871f..84e1512 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -4,49 +4,49 @@ ':combinePatchMinorReleases', ':separateMajorReleases', 'config:recommended', - 'config:best-practices' + 'config:best-practices', ], - baseBranches: [ + baseBranchPatterns: [ 'main', ], - useBaseBranchConfig: "merge", + useBaseBranchConfig: 'merge', packageRules: [ { description: 'Group Gradle minor and patch updates', matchUpdateTypes: [ 'minor', - 'patch' + 'patch', ], matchManagers: [ - 'gradle' + 'gradle', ], - groupName: 'gradle minor' + groupName: 'gradle minor', }, { description: 'Group GitHub Action minor and patch updates', matchUpdateTypes: [ 'minor', - 'patch' + 'patch', ], matchManagers: [ - 'github-actions' + 'github-actions', ], - groupName: 'github actions' + groupName: 'github actions', }, { description: 'Group CircleCI minor and patch updates', matchUpdateTypes: [ 'minor', - 'patch' + 'patch', ], matchManagers: [ - 'circleci' + 'circleci', ], - groupName: 'circleci minor' - } + groupName: 'circleci minor', + }, ], - rebaseWhen: "auto", + rebaseWhen: 'auto', rollbackPrs: true, dependencyDashboard: true, - dependencyDashboardAutoclose: true + dependencyDashboardAutoclose: true, }