test action

This commit is contained in:
2023-11-13 23:20:24 +01:00
parent 248ede3650
commit 5fcf6d1b16
4 changed files with 96 additions and 70 deletions

View File

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