Files

20 lines
342 B
YAML
Raw Permalink Normal View History

2023-09-15 10:55:34 -04:00
name: Hello, World!
description: Greet someone and record the time
author: GitHub Actions
# Define your inputs here.
2019-08-03 14:44:52 -07:00
inputs:
2023-09-15 10:55:34 -04:00
who-to-greet:
description: Who to greet
2019-08-03 14:44:52 -07:00
required: true
2023-09-15 10:55:34 -04:00
default: World
# Define your outputs here.
2019-08-03 14:44:52 -07:00
outputs:
2023-09-15 10:55:34 -04:00
time:
description: The time we greeted you
2019-08-03 14:44:52 -07:00
runs:
using: node24
2023-09-15 10:55:34 -04:00
main: dist/index.js