From ba83c4c57f092d984c6af23fda5216d47719967e Mon Sep 17 00:00:00 2001 From: Pierluigi Lenoci Date: Sat, 23 Nov 2024 11:16:15 +0100 Subject: [PATCH] chore(feat): add renovate (#257) --------- Signed-off-by: Pierluigi Lenoci Co-authored-by: Jan Larwig --- .github/renovate.json5 | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/renovate.json5 diff --git a/.github/renovate.json5 b/.github/renovate.json5 new file mode 100644 index 0000000..63ddb49 --- /dev/null +++ b/.github/renovate.json5 @@ -0,0 +1,39 @@ +{ + "extends": [ + "config:base" + ], + "automerge": false, + "assignees": [ + "pierluigilenoci" + ], + "schedule": [ + "before 5am every day" + ], + "packageRules": [ + { + "description": "Group all patch updates per package", + "updateTypes": ["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 major updates per package", + "updateTypes": ["major"], + "groupName": "all-major-updates" + "bumpVersion": "patch" + } + ], + "platformAutomerge": true, + "lockFileMaintenance": { + "enabled": true + }, + "baseBranches": [ + "main" + ] +}