Files
container-prebuilt-action/action.yml
T

23 lines
538 B
YAML
Raw Normal View History

2023-12-08 10:33:30 -05:00
name: The name of your action here
description: Provide a description here
author: Your name or organization here
# 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
# Update the image repository and tag below.
runs:
using: docker
2024-08-22 12:37:50 -04:00
image: docker://ghcr.io/actions/container-prebuilt-action:v0.2.0
2023-12-08 10:33:30 -05:00
env:
INPUT_WHO_TO_GREET: ${{ inputs.who-to-greet }}