Skip to content

Commit 8346549

Browse files
fix: reschedule nightly (#1691)
fix: reschedule nightly Signed-off-by: Shubhranshu Mahapatra <shubhum@amazon.com>
1 parent df487c0 commit 8346549

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/build-and-test-deb.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Build, test and upload .deb to S3
22

3+
# The scheduler runs at 6 AM PST (14:00 UTC) every day.
34
on:
45
workflow_dispatch:
56
inputs:
@@ -13,7 +14,7 @@ on:
1314
required: true
1415
type: string
1516
schedule:
16-
- cron: '0 9 * * *'
17+
- cron: '0 14 * * *'
1718
env:
1819
GO111MODULE: on
1920
GO_VERSION: '1.24.11'

.github/workflows/build-and-test-msi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Build, test and upload .msi to S3
22

3-
# TODO: add scheduler and tests
3+
# The scheduler runs at 6 AM PST (14:00 UTC) every day.
44
on:
55
workflow_dispatch:
66
inputs:
@@ -14,7 +14,7 @@ on:
1414
required: true
1515
type: string
1616
schedule:
17-
- cron: '0 9 * * *'
17+
- cron: '0 14 * * *'
1818
env:
1919
GO111MODULE: on
2020
GO_VERSION: '1.24.11'

.github/workflows/build-and-test-pkg.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Build, test and upload .pkg to S3
22

3-
# The scheduler runs at 9 am UTC every day.
3+
# The scheduler runs at 6 AM PST (14:00 UTC) every day.
44
on:
55
workflow_dispatch:
66
inputs:
@@ -14,7 +14,7 @@ on:
1414
required: true
1515
type: string
1616
schedule:
17-
- cron: '0 9 * * *'
17+
- cron: '0 14 * * *'
1818
env:
1919
GO111MODULE: on
2020

.github/workflows/sync-submodules-and-deps.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Sync Submodules and Dependencies
22

3-
# Pulls changes from the main branch of submodules daily at 9:00 UTC and opens a PR.
3+
# Pulls changes from the main branch of submodules daily at 6 AM PST (14:00 UTC) and opens a PR.
44
on:
55
schedule:
6-
- cron: '0 9 * * *'
6+
- cron: '0 14 * * *'
77
workflow_dispatch:
88

99
permissions:

0 commit comments

Comments
 (0)