feat: github aciton

This commit is contained in:
thomas
2024-04-17 18:34:10 +02:00
parent c7c58324a0
commit 04b1b4e565
3 changed files with 1 additions and 1 deletions

13
github-action/action.yml Normal file
View File

@@ -0,0 +1,13 @@
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: 'node20'
main: 'index.js'