lubitest/actions/hello/action.yml
lubiana 120d4f2a9e
All checks were successful
/ debug (push) Successful in 38s
test
2024-12-15 12:16:07 +01:00

17 lines
356 B
YAML

# action.yml
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: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.who-to-greet }}