From fcc8bf32f54622e51004d144d319ea49fc108b70 Mon Sep 17 00:00:00 2001 From: Ian Lewis Date: Wed, 6 Dec 2023 08:55:59 +0900 Subject: [PATCH] ci: Make renovate schedule monthly (#725) Makes renovate create PRs for dependency updates monthly rather than weekly. https://docs.renovatebot.com/presets-schedule/#schedulemonthly Also sets vulnerability PRs to be scheduled daily. https://docs.renovatebot.com/configuration-options/#vulnerabilityalerts Signed-off-by: Ian Lewis --- renovate.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 353163f23..8345c2281 100644 --- a/renovate.json +++ b/renovate.json @@ -1,7 +1,10 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:base", ":gitSignOff"], - "schedule": ["every weekend"], + "schedule": ["before 4 am on the first day of the month"], + "vulnerabilityAlerts": { + "schedule": "before 4am" + }, "postUpdateOptions": ["gomodTidy", "gomodUpdateImportPaths"], "packageRules": [ {