Files
component-detection-depende…/action.yml
Justin Hutchings 1467e01173 Initial commit
2022-08-25 09:12:00 -07:00

14 lines
355 B
YAML

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'
runs:
using: 'node16'
main: 'dist/index.js'