Skip to content

Commit 11b67a9

Browse files
authored
Merge pull request #1239 from stackhpc/2023.1-multinode-workflow
CI: Fix loss of number type when calling reusable workflow
2 parents 93d1b47 + e84bb74 commit 11b67a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/stackhpc-multinode.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ jobs:
6161
neutron_plugin: ${{ inputs.neutron_plugin }}
6262
upgrade: ${{ inputs.upgrade }}
6363
break_on: ${{ inputs.break_on }}
64-
break_duration: ${{ inputs.break_duration }}
64+
# Workaround loss of number type using fromJSON: https://github.com/orgs/community/discussions/67182
65+
break_duration: ${{ fromJSON(inputs.break_duration) }}
6566
ssh_key: ${{ inputs.ssh_key }}
6667
stackhpc_kayobe_config_version: ${{ github.ref_name }}
6768
# NOTE(upgrade): Reference the PREVIOUS release here.

0 commit comments

Comments
 (0)