Files

25 lines
504 B
YAML
Raw Permalink Normal View History

2024-11-15 12:30:35 -05:00
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
2023-09-14 10:35:27 -04:00
# Define your inputs here.
2019-09-11 01:44:28 -04:00
inputs:
2023-09-14 10:35:27 -04:00
milliseconds:
2024-11-15 12:30:35 -05:00
description: Your input description here
2019-09-11 01:44:28 -04:00
required: true
default: '1000'
2023-09-14 10:35:27 -04:00
# Define your outputs here.
2019-09-11 01:44:28 -04:00
outputs:
2023-09-14 10:35:27 -04:00
time:
2024-11-15 12:30:35 -05:00
description: Your output description here
2023-09-14 10:35:27 -04:00
2019-09-11 01:44:28 -04:00
runs:
2025-07-30 15:07:17 +01:00
using: node24
2023-09-14 10:35:27 -04:00
main: dist/index.js