mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-10-15 19:42:06 +00:00
Fix defaults (composite) (#753)
* Fix defaults (composite) * uses-composite: rely on defaults to pass * Add test_input_required back, needs more tests * Update Tests to test defaults carefully
This commit is contained in:
parent
5ed5bc15b3
commit
f5835d4e56
4 changed files with 50 additions and 1 deletions
|
@ -10,6 +10,18 @@ inputs:
|
|||
description: "optional defaulted input"
|
||||
required: false
|
||||
default: "test_input_optional_value"
|
||||
test_input_optional_with_default_overriden:
|
||||
description: "optional defaulted input"
|
||||
required: false
|
||||
default: "test_input_optional_value"
|
||||
test_input_required_with_default:
|
||||
description: "Required with default, due to an old bug of github actions this is allowed"
|
||||
required: true
|
||||
default: "test_input_optional_value"
|
||||
test_input_required_with_default_overriden:
|
||||
description: "Required with default, due to an old bug of github actions this is allowed"
|
||||
required: true
|
||||
default: "test_input_optional_value"
|
||||
|
||||
outputs:
|
||||
test_output:
|
||||
|
@ -25,6 +37,9 @@ runs:
|
|||
echo "---"
|
||||
echo "test_input_required=${{ inputs.test_input_required }}"
|
||||
echo "test_input_optional=${{ inputs.test_input_optional }}"
|
||||
echo "test_input_optional_with_default_overriden=${{ inputs.test_input_optional_with_default_overriden }}"
|
||||
echo "test_input_required_with_default=${{ inputs.test_input_required_with_default }}"
|
||||
echo "test_input_required_with_default_overriden=${{ inputs.test_input_required_with_default_overriden }}"
|
||||
echo "---"
|
||||
shell: bash
|
||||
|
||||
|
@ -41,6 +56,24 @@ runs:
|
|||
fi
|
||||
shell: bash
|
||||
|
||||
- run: |
|
||||
if [ "${{ inputs.test_input_optional_with_default_overriden }}" != "test_input_optional_with_default_overriden" ]; then
|
||||
exit 1
|
||||
fi
|
||||
shell: bash
|
||||
|
||||
- run: |
|
||||
if [ "${{ inputs.test_input_required_with_default }}" != "test_input_optional_value" ]; then
|
||||
exit 1
|
||||
fi
|
||||
shell: bash
|
||||
|
||||
- run: |
|
||||
if [ "${{ inputs.test_input_required_with_default_overriden }}" != "test_input_required_with_default_overriden" ]; then
|
||||
exit 1
|
||||
fi
|
||||
shell: bash
|
||||
|
||||
- run: |
|
||||
if [ -z "$GITHUB_ACTION_PATH" ]; then
|
||||
exit 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue