2024-06-16 11:04:24 +02:00
|
|
|
# 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:
|
2024-12-10 20:22:09 +00:00
|
|
|
using: 'docker'
|
2024-06-16 11:04:24 +02:00
|
|
|
image: 'Dockerfile'
|
|
|
|
args:
|
|
|
|
- ${{ inputs.who-to-greet }}
|