github.com/nektos/act@v0.2.63/pkg/runner/testdata/actions/node20/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: 'node20' 13 main: 'dist/index.js'