Skip to content

Commit 423c87b

Browse files
authored
fix daily scan (#1241)
*Issue #, if available:* *Description of changes:* fix daily scan schedule run rate to every 6 hours as expected: `cron: '0 */6 * * *'` By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 79b657a commit 423c87b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/daily-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: Daily scan
99

1010
on:
1111
schedule: # scheduled to run every 6 hours
12-
- cron: '10 */6 * * **' # “At minute 10 past every 6th hour.”
12+
- cron: '10 */6 * * *' # “At minute 10 past every 6th hour.”
1313
workflow_dispatch: # be able to run the workflow on demand
1414

1515
env:

0 commit comments

Comments
 (0)