diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..3df7b18 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,50 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "labels": [ + "dependencies" + ], + "packageRules": [ + { + "description": "Group all Swift package minor and patch updates together", + "groupName": "Swift non-major dependencies", + "matchManagers": [ + "swift" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ] + }, + { + "description": "Group all Mint package minor and patch updates together", + "groupName": "Mint non-major dependencies", + "matchManagers": [ + "mint" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ] + }, + { + "description": "Group and automerge non-major GitHub Actions updates", + "groupName": "GitHub Actions non-major dependencies", + "matchManagers": [ + "github-actions" + ], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "automerge": true + } + ], + "suppressNotifications": [ + "prIgnoreNotification", + "prEditedNotification", + "branchAutomergeFailure" + ] +} diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 88da440..0000000 --- a/renovate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ], - "reviewers": [], - "addReviewers": false, - "assignees": [ - "ctreffs" - ] -}