Skip to content

Commit 9b79d7c

Browse files
committed
Work CI-CD
- Update cron of round 1 to run daily. - Update cron of round 2 to be set apart from round 1. - Need these to run daily otherwise changes from class libs take too long to propagate to IoT bindings. ***NO_CI***
1 parent 8118ea3 commit 9b79d7c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/update-dependencies-1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ name: Update dependencies (round 1)
77

88
on:
99
schedule:
10-
# Update At 00:00 UTC on Tuesday and Friday
11-
- cron: '0 0 * * 2,5'
10+
# At 00:00 UTC every day.
11+
- cron: '00 00 * * *'
1212
repository_dispatch:
1313
types: update-dependencies
1414

.github/workflows/update-dependencies-2.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ name: Update dependencies (round 2)
88

99
on:
1010
schedule:
11-
# Update At 00:00 UTC on Wednesday and Saturday
12-
- cron: '0 0 * * 3,6'
11+
# At 02:00 UTC every day.
12+
# Set 2 hours apart from round 1 to allow enough time for any changes to propagate.
13+
- cron: '00 02 * * *'
1314
repository_dispatch:
1415
types: update-dependencies
1516

0 commit comments

Comments
 (0)