typescript-action/action.yml

23 lines
572 B
YAML
Raw Normal View History

2023-08-23 17:37:14 +00: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-11 03:28:52 +00:00
name: 'Your name here'
description: 'Provide a description here'
author: 'Your name or organization here'
2023-08-23 17:37:14 +00:00
# Define your inputs here.
2019-08-22 02:30:36 +00:00
inputs:
2023-08-23 17:37:14 +00:00
milliseconds:
description: 'Your input description here'
required: true
2023-08-23 17:37:14 +00:00
default: '1000'
# Define your outputs here.
outputs:
time:
description: 'Your output description here'
2019-07-22 18:15:40 +00:00
runs:
2023-08-23 17:37:14 +00:00
using: node16
main: dist/index.js