From 9d2a1d7035446c3f78d78ca9ba4b5ad2a6eb8c3f Mon Sep 17 00:00:00 2001 From: Erik Michelson Date: Thu, 11 Jun 2020 20:57:41 +0200 Subject: [PATCH] Updated schedule of renovate (#192) * Updated schedule of renovate Even if renovate only creates 1-2 pull requests per day, they start to become annoying. Therefore, we decided to limit the timeslot for renovate actions to our dependency-patch-day Saturday. * Added option to remove the hourly limit Because we extend config:base we have a default hourly limit of 2. This change sets that to 0 and thereby disables the limit. --- renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index a8aa9b05b..fc535a6ed 100644 --- a/renovate.json +++ b/renovate.json @@ -33,8 +33,8 @@ "groupName": "JS test packages" } ], + "prHourlyLimit": 0, "schedule": [ - "after 2am", - "before 8am" + "on Saturday" ] }