Files
Rachael Sewell 2b62cf0984 Remove comment
2019-09-06 15:14:35 -07:00

14 lines
301 B
YAML

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'
main: 'index.js'