blob: 3a679a0e401771df520e4fbfade14f20f90d52e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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 greeted you'
runs:
using: 'docker'
image: 'Dockerfile'
env:
WHOAMI: ${{ inputs.who-to-greet }}
|