2025-03-20 12:31:40 +03:00
commit c2055340e6
15 changed files with 374 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
name: Hello, World!
description: Greet someone and record the time
author: GitHub Actions
# Define your inputs here.
inputs:
who-to-greet:
description: Who to greet
required: true
default: World
# Define your outputs here.
outputs:
time:
description: The time we greeted you
runs:
using: docker
image: Dockerfile
env:
INPUT_WHO_TO_GREET: ${{ inputs.who-to-greet }}