mirror of https://github.com/status-im/consul.git
ci: fix nightly cron schedules to run once (#21296)
Several of our nightly cron jobs are actually running repeatedly back-to-back during the designated hour. Change the cron to run them once as intended.
This commit is contained in:
parent
fe2f8f1c72
commit
3ee6816d8d
|
@ -6,7 +6,7 @@ name: Nightly test integrations - peering_common_topo
|
|||
on:
|
||||
schedule:
|
||||
# Run nightly at 12AM UTC/8PM EST/5PM PST
|
||||
- cron: '* 0 * * *'
|
||||
- cron: '0 0 * * *'
|
||||
workflow_dispatch: {}
|
||||
|
||||
env:
|
||||
|
|
|
@ -6,7 +6,7 @@ name: Nightly test-integrations 1.15.x
|
|||
on:
|
||||
schedule:
|
||||
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
||||
- cron: '* 1 * * *'
|
||||
- cron: '0 1 * * *'
|
||||
workflow_dispatch: {}
|
||||
|
||||
env:
|
||||
|
|
|
@ -6,7 +6,7 @@ name: Nightly test-integrations 1.17.x
|
|||
on:
|
||||
schedule:
|
||||
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
||||
- cron: '* 1 * * *'
|
||||
- cron: '0 1 * * *'
|
||||
workflow_dispatch: {}
|
||||
|
||||
env:
|
||||
|
|
|
@ -6,7 +6,7 @@ name: Nightly test-integrations 1.18.x
|
|||
on:
|
||||
schedule:
|
||||
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
||||
- cron: '* 1 * * *'
|
||||
- cron: '0 1 * * *'
|
||||
workflow_dispatch: {}
|
||||
|
||||
env:
|
||||
|
|
|
@ -6,7 +6,7 @@ name: Nightly test-integrations 1.19.x
|
|||
on:
|
||||
schedule:
|
||||
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
||||
- cron: '* 1 * * *'
|
||||
- cron: '0 1 * * *'
|
||||
workflow_dispatch: {}
|
||||
|
||||
env:
|
||||
|
|
|
@ -6,7 +6,7 @@ name: Nightly test-integrations
|
|||
on:
|
||||
schedule:
|
||||
# Run nightly at 12AM UTC/8PM EST/5PM PST
|
||||
- cron: '* 0 * * *'
|
||||
- cron: '0 0 * * *'
|
||||
workflow_dispatch: {}
|
||||
|
||||
env:
|
||||
|
|
Loading…
Reference in New Issue