hello-world-javascript-action/action.yml

14 lines
298 B
YAML
Raw Normal View History

2019-08-03 21:44:52 +00: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
2020-04-23 23:08:45 +00:00
description: 'The time we greeted you'
2019-08-03 21:44:52 +00:00
runs:
using: 'node12'
2019-08-04 01:31:57 +00:00
main: 'index.js'