hello-world-javascript-action/action.yml

20 lines
342 B
YAML
Raw Normal View History

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