Testing actions

This commit is contained in:
2024-01-15 14:04:31 -06:00
parent 98047e9e30
commit 3d0f78e280

View File

@@ -0,0 +1,16 @@
# 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 }}