mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-06 07:19:51 +00:00
23 lines
572 B
YAML
23 lines
572 B
YAML
# 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.
|
|
name: 'Your name here'
|
|
description: 'Provide a description here'
|
|
author: 'Your name or organization here'
|
|
|
|
# Define your inputs here.
|
|
inputs:
|
|
milliseconds:
|
|
description: 'Your input description here'
|
|
required: true
|
|
default: '1000'
|
|
|
|
# Define your outputs here.
|
|
outputs:
|
|
time:
|
|
description: 'Your output description here'
|
|
|
|
runs:
|
|
using: node16
|
|
main: dist/index.js
|