Files

16 lines
342 B
YAML
Raw Permalink Normal View History

2019-08-03 21:11:09 -07:00
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
2019-09-23 15:28:55 +10:00
description: 'The time we greeted you'
2019-08-03 21:11:09 -07:00
runs:
using: 'docker'
image: 'Dockerfile'
args:
2019-09-05 20:42:24 -07:00
- ${{ inputs.who-to-greet }}