Files
typescript-action/action.yml
T

23 lines
572 B
YAML
Raw Normal View History

2023-08-23 13:37:14 -04:00
# When creating your own action from this template, update this file with
# information about your action, such as the name, description, inputs, outputs,
# and any other relevant details.
2019-09-10 23:28:52 -04:00
name: 'Your name here'
description: 'Provide a description here'
author: 'Your name or organization here'
2023-08-23 13:37:14 -04:00
# Define your inputs here.
2019-08-22 04:30:36 +02:00
inputs:
2023-08-23 13:37:14 -04:00
milliseconds:
description: 'Your input description here'
2020-07-20 07:44:22 -04:00
required: true
2023-08-23 13:37:14 -04:00
default: '1000'
# Define your outputs here.
outputs:
time:
description: 'Your output description here'
2019-07-22 14:15:40 -04:00
runs:
2023-08-23 13:37:14 -04:00
using: node16
main: dist/index.js