hello-world-javascript-action/action.yml

15 lines
314 B
YAML
Raw Normal View History

2019-08-03 21:44:52 +00:00
# action.yml
name: 'Hello World'
description: 'Greet someone and record the time'
inputs:
who-to-greet: # id of input
description: 'Who to greet'
required: true
default: 'World'
outputs:
time: # id of output
description: 'The time we we greeted you'
runs:
using: 'node12'
2019-08-04 01:31:57 +00:00
main: 'index.js'