Skip to content

Commit 2908d63

Browse files
authored
Don't restrict time of day in renovate PR schedule (#2401)
We cannot control when renovate is run by Mend, they run it ~every 4h. When they don't run in our schedule, no PR is created.
1 parent 538e10a commit 2908d63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/renovate.json5

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
$schema: "https://docs.renovatebot.com/renovate-schema.json",
33
extends: ["config:recommended"],
4-
schedule: ["* 19-21 1 * *"],
4+
schedule: ["* * 1 * *"],
55
nix: {
66
enabled: true,
77
},
@@ -32,7 +32,7 @@
3232
groupName: "nix flakes",
3333
groupSlug: "nix",
3434
matchManagers: ["nix"],
35-
schedule: ["* 19-21 1 */3 *"],
35+
schedule: ["* * 1 */3 *"],
3636
},
3737
],
3838
}

0 commit comments

Comments
 (0)