javascript-action/action.yml

14 lines
355 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
description: 'The current time after waiting'
2019-09-11 05:44:28 +00:00
runs:
2022-02-28 17:59:51 +00:00
using: 'node16'
2019-10-23 01:51:21 +00:00
main: 'dist/index.js'