From 7eb6c0e16c3031425946a691ec0345ac378f4b8f Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Tue, 11 Aug 2026 07:38:25 +0200 Subject: [PATCH] chore: migrate Renovate config to .github/renovate.json --- .github/renovate.json | 50 +++++++++++++++++++++++++++++++++++++++++++ renovate.json | 11 ---------- 2 files changed, 50 insertions(+), 11 deletions(-) create mode 100644 .github/renovate.json delete mode 100644 renovate.json 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" - ] -}