mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-04 21:49:37 +00:00
20 lines
342 B
YAML
20 lines
342 B
YAML
name: Hello, World!
|
|
description: Greet someone and record the time
|
|
author: GitHub Actions
|
|
|
|
# Define your inputs here.
|
|
inputs:
|
|
who-to-greet:
|
|
description: Who to greet
|
|
required: true
|
|
default: World
|
|
|
|
# Define your outputs here.
|
|
outputs:
|
|
time:
|
|
description: The time we greeted you
|
|
|
|
runs:
|
|
using: node20
|
|
main: dist/index.js
|