mirror of
https://gitea.com/gitea/act
synced 2025-02-14 20:08:03 +00:00
14 lines
303 B
YAML
14 lines
303 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: 'dist/index.js'
|