Skip to content

Commit

Permalink
Merge pull request #1239 from stackhpc/2023.1-multinode-workflow
Browse files Browse the repository at this point in the history
CI: Fix loss of number type when calling reusable workflow
  • Loading branch information
markgoddard committed Aug 21, 2024
2 parents 93d1b47 + e84bb74 commit 11b67a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/stackhpc-multinode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ jobs:
neutron_plugin: ${{ inputs.neutron_plugin }}
upgrade: ${{ inputs.upgrade }}
break_on: ${{ inputs.break_on }}
break_duration: ${{ inputs.break_duration }}
# Workaround loss of number type using fromJSON: https://github.com/orgs/community/discussions/67182
break_duration: ${{ fromJSON(inputs.break_duration) }}
ssh_key: ${{ inputs.ssh_key }}
stackhpc_kayobe_config_version: ${{ github.ref_name }}
# NOTE(upgrade): Reference the PREVIOUS release here.
Expand Down

0 comments on commit 11b67a9

Please sign in to comment.