mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-04 14:29:45 +00:00
25 lines
504 B
YAML
25 lines
504 B
YAML
name: The name of your action here
|
|
description: Provide a description here
|
|
author: Your name or organization here
|
|
|
|
# Add your action's branding here. This will appear on the GitHub Marketplace.
|
|
branding:
|
|
icon: heart
|
|
color: red
|
|
|
|
# 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: node20
|
|
main: dist/index.js
|