github.com/nektos/act@v0.2.63/pkg/runner/testdata/input-from-cli/input.yml (about) 1 on: 2 workflow_dispatch: 3 inputs: 4 NAME: 5 description: "A random input name for the workflow" 6 type: string 7 required: true 8 SOME_VALUE: 9 description: "Some other input to pass" 10 type: string 11 required: true 12 13 jobs: 14 test: 15 name: Test 16 runs-on: ubuntu-latest 17 18 steps: 19 - name: Test with inputs 20 run: | 21 [ -z "${{ github.event.inputs.SOME_INPUT }}" ] && exit 1 || exit 0