From 031fe9c06ed924928a65ee55fef14544bc61118e Mon Sep 17 00:00:00 2001 From: Stefan Haun <tux@netz39.de> Date: Thu, 6 Mar 2025 10:26:08 +0100 Subject: [PATCH 1/3] Add comment to clarify Renovate configuration source --- host-pottwal.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/host-pottwal.yml b/host-pottwal.yml index 05af3c1..4fab96d 100644 --- a/host-pottwal.yml +++ b/host-pottwal.yml @@ -638,6 +638,7 @@ tags: - spaceapi + # Renovate configuration is sourced from `renovate.json` in each repository - name: Ensure renovate bot cronjob is present ansible.builtin.template: src: templates/pottwal/renovate-cron.j2 From b9416d00962856965fa71d430ab7d1f2b06ea3be Mon Sep 17 00:00:00 2001 From: Stefan Haun <tux@netz39.de> Date: Tue, 4 Mar 2025 23:00:36 +0100 Subject: [PATCH 2/3] Limit renovate/renovate updates to Friday before 1am This effectively reduces the renovate update PRs to (mostly) once per week. --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index b70eae7..7182867 100644 --- a/renovate.json +++ b/renovate.json @@ -15,8 +15,9 @@ ], "packageRules": [ { + "matchDatasources": ["docker"], "matchPackageNames": ["renovate/renovate"], - "schedule": [ "on friday" ] + "schedule": [ "before 1am on friday" ] } ] } From 5a591c414595bf6ee9173e5d2742561dfc1442b2 Mon Sep 17 00:00:00 2001 From: Stefan Haun <tux@netz39.de> Date: Thu, 6 Mar 2025 10:33:30 +0100 Subject: [PATCH 3/3] Allow automerge for renovate/renovate --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 7182867..ec350d4 100644 --- a/renovate.json +++ b/renovate.json @@ -17,7 +17,8 @@ { "matchDatasources": ["docker"], "matchPackageNames": ["renovate/renovate"], - "schedule": [ "before 1am on friday" ] + "schedule": [ "before 1am on friday" ], + "automerge": true } ] }