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:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
# Run nightly at 12AM UTC/8PM EST/5PM PST
|
# Run nightly at 12AM UTC/8PM EST/5PM PST
|
||||||
- cron: '* 0 * * *'
|
- cron: '0 0 * * *'
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -6,7 +6,7 @@ name: Nightly test-integrations 1.15.x
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
||||||
- cron: '* 1 * * *'
|
- cron: '0 1 * * *'
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -6,7 +6,7 @@ name: Nightly test-integrations 1.17.x
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
||||||
- cron: '* 1 * * *'
|
- cron: '0 1 * * *'
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -6,7 +6,7 @@ name: Nightly test-integrations 1.18.x
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
||||||
- cron: '* 1 * * *'
|
- cron: '0 1 * * *'
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -6,7 +6,7 @@ name: Nightly test-integrations 1.19.x
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
# Run nightly at 1AM UTC/9PM EST/6PM PST
|
||||||
- cron: '* 1 * * *'
|
- cron: '0 1 * * *'
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
|
@ -6,7 +6,7 @@ name: Nightly test-integrations
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
# Run nightly at 12AM UTC/8PM EST/5PM PST
|
# Run nightly at 12AM UTC/8PM EST/5PM PST
|
||||||
- cron: '* 0 * * *'
|
- cron: '0 0 * * *'
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue