2025-07-11 13:36:30 -04:00
|
|
|
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
|
2023-09-01 14:10:18 -04:00
|
|
|
|
|
|
|
|
# Define your inputs here.
|
2023-04-08 15:01:15 +09:00
|
|
|
inputs:
|
2023-09-01 14:10:18 -04:00
|
|
|
who-to-greet:
|
2025-07-11 13:36:30 -04:00
|
|
|
description: Your input description here
|
2023-09-01 14:10:18 -04:00
|
|
|
required: true
|
2025-07-11 13:36:30 -04:00
|
|
|
default: World
|
2023-09-01 14:10:18 -04:00
|
|
|
|
|
|
|
|
# Define your outputs here.
|
|
|
|
|
outputs:
|
|
|
|
|
greeting:
|
2025-07-11 13:36:30 -04:00
|
|
|
description: Your output description here
|
2023-09-01 14:10:18 -04:00
|
|
|
|
2019-08-03 21:55:35 -04:00
|
|
|
runs:
|
2023-09-01 14:10:18 -04:00
|
|
|
using: docker
|
|
|
|
|
image: Dockerfile
|
2023-09-01 14:47:27 -04:00
|
|
|
env:
|
|
|
|
|
INPUT_WHO_TO_GREET: ${{ inputs.who-to-greet }}
|