commit cd998f8804a33bd93574e2830d03f800bbc162ba
parent e501e4ed4ba86da12a9b4747fdc326b8366a38be
Author: zeertzjq <zeertzjq@outlook.com>
Date: Mon, 16 May 2022 18:21:55 +0800
ci(coverity): correct cron job time #18590
The comment says it should be run at 00:10 UTC, and in cron job format
minutes come before hours.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/coverity-scan.yml b/.github/workflows/coverity-scan.yml
@@ -1,7 +1,7 @@
name: Coverity
on:
schedule:
- - cron: '0 10 * * 1' # Run every Monday at 00:10
+ - cron: '10 0 * * 1' # Run every Monday at 00:10
workflow_dispatch:
jobs: