🎉 Initial commit

This commit is contained in:
Simon Schneegans
2020-08-15 12:02:21 +02:00
parent b8f4f17c5a
commit ed18a71a87
364 changed files with 87551 additions and 2 deletions

13
action.yml Normal file
View File

@@ -0,0 +1,13 @@
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: 'node12'
main: 'index.js'