You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build_loop.yml
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,9 @@ on:
10
10
# affect other OS apps if run simultaneously.
11
11
# Each OS needs a time of day distinct from other apps, LoopWorkspace uses 9 every Wed and 7 every 1st of month
12
12
schedule:
13
-
- cron: "0 9 * * 3"# Checks for updates at 09:00 UTC every Wednesday
14
-
- cron: "0 7 1 * *"# Builds the app on the 1st of every month at 07:00 UTC
13
+
# avoid starting an action at hh:00 when GitHub resources are impacted
14
+
- cron: "33 9 * * 3"# Checks for updates at 09:33 UTC every Wednesday
15
+
- cron: "33 7 1 * *"# Builds the app on the 1st of every month at 07:33 UTC
15
16
16
17
env:
17
18
UPSTREAM_REPO: LoopKit/LoopWorkspace
@@ -200,7 +201,7 @@ jobs:
200
201
| # runs if started manually, or if sync schedule is set and enabled and scheduled on the first Saturday each month, or if sync schedule is set and enabled and new commits were found
0 commit comments