Rename actions.yml to action.yml

This commit is contained in:
Jason Etcovitch
2019-09-11 09:11:33 -04:00
committed by GitHub
parent d2f5ae2045
commit a04e3e4042

13
action.yml Normal file
View File

@ -0,0 +1,13 @@
name: 'Wait'
description: 'Wait a designated number of milliseconds'
inputs:
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: 'index.js'