The scheduled CI is being skipped since about 6 days ago (which means this is probably due to the merge of #4729, see this run before the merge and this run after the merge).
This is really strange because workflow_dispatch events (for which the CI detection job is also skipped) still work perfectly fine.
Edit: it seems to be because of
|
&& ( |
|
(github.event_name == 'scheduled' || github.event_name == 'workflow_dispatch') |
|
|| needs.detect-ci-trigger.outputs.triggered == 'true' |
|
) |
if I remove that the scheduled CI runs.
cc @andersy005
The scheduled CI is being skipped since about 6 days ago (which means this is probably due to the merge of #4729, see this run before the merge and this run after the merge).
This is really strange because
workflow_dispatchevents (for which the CI detection job is also skipped) still work perfectly fine.Edit: it seems to be because of
xarray/.github/workflows/upstream-dev-ci.yaml
Lines 34 to 37 in f52a95c
if I remove that the scheduled CI runs.
cc @andersy005