Initial commit

This commit is contained in:
Rachael Sewell
2019-08-03 14:44:52 -07:00
commit d8c14008f1
12 changed files with 401 additions and 0 deletions

14
action.yml Normal file
View File

@ -0,0 +1,14 @@
# 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'
main: 'lib/hello-world.js'