Skip to content

Commit 05a324f

Browse files
authored
ci.yml: github.event.type => github.event_name (#1153)
# Description Fixes `github.event.type` being checked when determining which variants to run during the scheduled nightly CI run, rather than `github.event_name`
2 parents b11fd87 + 7897294 commit 05a324f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
variant: [default, no-thunks]
3434
exclude:
3535
- variant:
36-
${{ (github.event.type == 'schedule' || github.event.inputs.nothunks) && 'default' || 'no-thunks' }}
36+
${{ (github.event_name == 'schedule' || inputs.nothunks) && 'default' || 'no-thunks' }}
3737
env:
3838
# Modify this value to "invalidate" the Cabal cache.
3939
CABAL_CACHE_VERSION: "2024-01-29"

0 commit comments

Comments
 (0)