From 402b9aa204e66740c379f1a6ba265cf748614d2e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 8 Dec 2024 14:57:01 +0000 Subject: [PATCH] chore(config): migrate config .github/renovate.json5 --- .github/renovate.json5 | 61 +++++++++++++++++++++++++++++------------- 1 file changed, 42 insertions(+), 19 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 22dfa62..6655fd3 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,22 +1,45 @@ { - "extends": [ - ":enableRenovate", - ":semanticCommits", - ":enablePreCommit", - "config:best-practices" + extends: [ + ':enableRenovate', + ':semanticCommits', + ':enablePreCommit', + 'config:best-practices', + ], + platform: 'github', + onboarding: false, + requireConfig: 'optional', + timezone: 'UTC', + dependencyDashboard: true, + platformCommit: 'enabled', + prCreation: 'not-pending', + suppressNotifications: [ + 'prIgnoreNotification', + ], + rebaseWhen: 'conflicted', + packageRules: [ + { + matchUpdateTypes: [ + 'major', + ], + addLabels: [ + 'dependency/major', + ], + }, + { + matchUpdateTypes: [ + 'minor', + ], + addLabels: [ + 'dependency/minor', + ], + }, + { + matchUpdateTypes: [ + 'patch', + ], + addLabels: [ + 'dependency/patch', + ], + }, ], - "platform": "github", - "onboarding": false, - "requireConfig": "optional", - "timezone": "UTC", - "dependencyDashboard": true, - "platformCommit": true, - "prCreation": "not-pending", - "suppressNotifications": ["prIgnoreNotification"], - "rebaseWhen": "conflicted", - "packageRules": [ - {"matchUpdateTypes": ["major"], "addLabels": ["dependency/major"]}, - {"matchUpdateTypes": ["minor"], "addLabels": ["dependency/minor"]}, - {"matchUpdateTypes": ["patch"], "addLabels": ["dependency/patch"]} - ] }