gitea-actions-test/action.yml
Alex Lau (AvengerMoJo) 82574f4a6b
Adding dockerfile and obs-service yaml
Signed-off-by: Alex Lau (AvengerMoJo) <alau@suse.com>
2023-09-20 23:43:03 +08:00

17 lines
355 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 }}