initial commit

This commit is contained in:
Michael Shick 2019-11-22 17:12:31 -05:00
commit 3d8df2a501
No known key found for this signature in database
GPG key ID: ADF5BC9704BB4A61
21 changed files with 6283 additions and 0 deletions

16
action.yml Normal file
View file

@ -0,0 +1,16 @@
name: "Add PR Comment"
description: "Add a comment to a PR"
inputs:
msg:
description: "the message to print"
required: true
milliseconds: # id of input
description: "number of milliseconds to wait"
required: true
default: "1000"
outputs:
time: # output will be available to future steps
description: "The message to output"
runs:
using: "node12"
main: "dist/index.js"