GitHub CI: Fix cron string

The order of values is minute, hour, day-of-month, month, day-of-week
This commit is contained in:
Martin Piatka
2022-02-02 10:21:08 +01:00
parent b3262428f6
commit 263a3e945f
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ on:
branches:
- arm-build
schedule:
- cron: '0 4 * 20 *' # 20th at 4:00 UTC
- cron: '0 4 20 * *' # 20th at 4:00 UTC
jobs:
Build:

View File

@@ -5,7 +5,7 @@ on:
branches:
- coverity_scan
schedule:
- cron: '0 6 * 20 *' # 20th at 6:00 UTC
- cron: '0 6 20 * *' # 20th at 6:00 UTC
jobs:
Coverity: