fix: interpolate action input defaults (#1376)

This fixes the regression to interpolate input defaults which contain
expressions.
This commit is contained in:
Markus Wolf
2022-10-07 16:51:27 +02:00
committed by GitHub
parent 48188a6280
commit 36310139e0
2 changed files with 14 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ inputs:
some:
description: "some input"
required: true
other:
description: "other input"
default: "${{ inputs.some }}"
required: false
outputs:
out:
description: "some output"
@@ -17,3 +21,9 @@ runs:
echo "action input=${{ inputs.some }}"
[[ "${{ inputs.some == 'value' }}" = "true" ]] || exit 1
shell: bash
- run: |
echo "ENV_VAR=$ENV_VAR"
[[ "$ENV_VAR" = "value" ]] || exit 1
shell: bash
env:
ENV_VAR: ${{ inputs.other }}