javascript-action/action.yml

14 lines
346 B
YAML
Raw Normal View History

2019-09-11 05:44:28 +00:00
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
2019-09-11 05:44:28 +00:00
description: 'The message to output'
runs:
using: 'node12'
2019-10-23 01:51:21 +00:00
main: 'dist/index.js'