Skip to content

Commit 1147ac6

Browse files
committed
fixed right hand argument
Signed-off-by: MDCODE247 <[email protected]>
1 parent c919209 commit 1147ac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/try.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
// Process `workflow_dispatch` provided configuration overrides.
7878
if (context.eventName == "workflow_dispatch") {
7979
// WPT-related overrides only affect Linux currently, as tests don't run by default on other platforms.
80-
configuration.matrix[0].wpt = "${{ inputs.wpt }}" || "none";
80+
configuration.matrix[0].wpt = Boolean(${{ inputs.wpt }});
8181
configuration.matrix[0].wpt_args = "${{ inputs.wpt-args }}" || "";
8282
8383
let unit_tests = Boolean(${{ inputs.unit-tests }});

0 commit comments

Comments
 (0)