File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 27
27
- nightly
28
28
schedule :
29
29
# Run nightly cronjob CI every day at 14 UTC / 6AM PST / 3PM CET
30
- - cron : ' 33 * * * *'
30
+ - cron : ' 24 * * * *'
31
31
# Run beta slightly later
32
32
- cron : ' 1 * * * *'
33
33
Original file line number Diff line number Diff line change @@ -296,12 +296,12 @@ echo "set-ci-toolchain: GITHUB_EVENT_NAME is ${event_name}"
296
296
# We need to parse the channel information for dispatch/schedule events
297
297
is_workflow = eq "${event_name}" "workflow_dispatch"
298
298
is_schedule = eq "${event_name}" "schedule"
299
- if ${is_workflow} or $is_schedule}
299
+ if ${is_workflow} or ${ is_schedule}
300
300
event_path = get_env GITHUB_EVENT_PATH
301
301
event_file = readfile ${event_path}
302
302
event_json = json_parse ${event_file}
303
303
# For dispatch events
304
- if is_workflow
304
+ if ${ is_workflow}
305
305
echo "set-ci-toolchain: manually selected channel is ${event_json.inputs.channel}"
306
306
if not eq "${event_json.inputs.channel}" "pinned-stable"
307
307
needs_override = set true
You can’t perform that action at this time.
0 commit comments