mirror of
https://github.com/ditkrg/project-version-check.git
synced 2026-01-23 14:27:20 +00:00
15 lines
298 B
YAML
15 lines
298 B
YAML
name: "Hello World"
|
|
description: "Greet someone and record the time"
|
|
inputs:
|
|
who-to-greet: # id of input
|
|
description: "Who to greet"
|
|
required: true
|
|
default: "World"
|
|
outputs:
|
|
time: # id of output
|
|
description: "The time we greeted you"
|
|
|
|
runs:
|
|
using: "node20"
|
|
main: "index.js"
|