project-version-check/action.yaml
Shakar 0b3b5c2044
put action.yaml into root dir
Signed-off-by: Shakar <5h4k4r.b4kr@gmail.com>
2023-09-11 10:44:16 +03:00

17 lines
342 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: "docker"
image: "Dockerfile"
args:
- ${{ inputs.who-to-greet }}