Test inputs #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test inputs | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Test input read' | ||
required: true | ||
default: ${{ readFile('inputs.yaml') }} | ||
Check failure on line 8 in .github/workflows/test_inputs.yaml GitHub Actions / Test inputsInvalid workflow file
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Input value | ||
run: | | ||
echo "Check input value: ${{ github.event.inputs.version }}" | ||