Skip to content

Commit 4e7d59f

Browse files
author
Kamil Sobol
authored
Adjust health checks schedule (#1536)
* Update health_checks.yml * fix lint
1 parent b2b334e commit 4e7d59f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/health_checks.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ on:
1111
- hotfix
1212
- feature/**
1313
schedule:
14-
- cron: '0 12 * * *' # Every day 12:00 UTC
14+
# Every day at 00:00 and 12:00 UTC.
15+
# This is to make sure that there is at least one workflow run every 24 hours
16+
# taking into account that scheduled runs may not fire at exact prescribed time.
17+
- cron: '0 0,12 * * *'
1518
workflow_dispatch:
1619

1720
jobs:

0 commit comments

Comments
 (0)