mirror of
https://github.com/actions/container-action.git
synced 2025-07-30 09:37:41 +00:00
27 lines
563 B
YAML
27 lines
563 B
YAML
name: The name of your action here
|
|
description: Provide a description here
|
|
author: Your name or organization here
|
|
|
|
# Add your action's branding here. This will appear on the GitHub Marketplace.
|
|
branding:
|
|
icon: heart
|
|
color: red
|
|
|
|
# Define your inputs here.
|
|
inputs:
|
|
who-to-greet:
|
|
description: Your input description here
|
|
required: true
|
|
default: World
|
|
|
|
# Define your outputs here.
|
|
outputs:
|
|
greeting:
|
|
description: Your output description here
|
|
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
env:
|
|
INPUT_WHO_TO_GREET: ${{ inputs.who-to-greet }}
|