Files
typescript-action/action.yml
T

15 lines
397 B
YAML
Raw Normal View History

2023-02-03 00:48:54 +00:00
name: 'james'
2019-09-10 23:28:52 -04:00
description: 'Provide a description here'
author: 'Your name or organization here'
2019-08-22 04:30:36 +02:00
inputs:
2020-07-20 07:44:22 -04:00
milliseconds: # change this
required: true
2019-09-10 23:28:52 -04:00
description: 'input description here'
default: 'default value if applicable'
outputs:
time: # output will be available to future steps
description: 'The current time after waiting'
2019-07-22 14:15:40 -04:00
runs:
2022-02-07 14:09:58 -05:00
using: 'node16'
main: 'dist/index.js'