Skip to content

Commit d1b6534

Browse files
authored
fix daily scan (aws-observability#282)
*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 you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent bce30ab commit d1b6534

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: '0 */6 * * **' # “At minute 0 past every 6th hour.”
12+
- cron: '0 */6 * * *' # “At minute 0 past every 6th hour.”
1313
workflow_dispatch: # be able to run the workflow on demand
1414

1515
env:

0 commit comments

Comments
 (0)