mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-20 11:56:47 +08:00
12 lines
308 B
YAML
12 lines
308 B
YAML
name: "Hello World Docker Action"
|
|
description: "A simple Docker action that prints Hello, World! and environment variables."
|
|
inputs:
|
|
who-to-greet:
|
|
description: "Who to greet"
|
|
required: false
|
|
default: "World"
|
|
runs:
|
|
using: "docker"
|
|
image: "Dockerfile"
|
|
args:
|
|
- ${{ inputs.who-to-greet }} |