diff --git a/.github/renovate.json5 b/.github/renovate.json5 index cf77c5c6..2b27553b 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -7,11 +7,12 @@ enabled: true }, lockFileMaintenance: { - "enabled": true + "enabled": true, + // "automerge": true, disabled due to endless update loops caused by setuptools_scm }, configMigration: true, - commitBodyTable: true, labels: ["dependencies"], + schedule: ["every weekend"], packageRules: [ { matchManagers: ["github-actions"], @@ -26,7 +27,12 @@ { matchManagers: ["pre-commit"], addLabels: ["pre-commit", "continuous integration"], - commitMessagePrefix: "⬆\uFE0F\uD83E\uDE9D" + commitMessagePrefix: "⬆\uFE0F\uD83E\uDE9D", + }, + { + "description": "Automerge patch updates", + "matchUpdateTypes": ["patch"], + "automerge": true } ] }