typescript-action/action.yml

25 lines
518 B
YAML
Raw Normal View History

2021-11-02 07:02:10 +00:00
name: 'The name of your action here'
2019-09-11 03:28:52 +00:00
description: 'Provide a description here'
author: 'Your name or organization here'
2023-08-23 17:37:14 +00:00
2023-10-31 23:49:38 +00:00
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'heart'
color: 'red'
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-09-11 17:24:18 +00:00
using: node20
2023-08-23 17:37:14 +00:00
main: dist/index.js