github.com/nektos/act@v0.2.63/pkg/runner/testdata/actions/docker-local-noargs/action.yml (about) 1 name: 'Hello World' 2 description: 'Greet someone and record the time' 3 inputs: 4 who-to-greet: # id of input 5 description: 'Who to greet' 6 required: true 7 default: 'World' 8 outputs: 9 time: # id of output 10 description: 'The time we greeted you' 11 runs: 12 using: 'docker' 13 image: 'Dockerfile' 14 env: 15 WHOAMI: ${{ inputs.who-to-greet }}