Files
hello-world-docker-action/action.yml

22 lines
398 B
YAML
Raw Normal View History

2023-09-15 11:32:21 -04:00
name: Hello, World!
description: Greet someone and record the time
author: GitHub Actions
# Define your inputs here.
2019-08-03 21:11:09 -07:00
inputs:
2023-09-15 11:32:21 -04:00
who-to-greet:
description: Who to greet
2019-08-03 21:11:09 -07:00
required: true
2023-09-15 11:32:21 -04:00
default: World
# Define your outputs here.
2019-08-03 21:11:09 -07:00
outputs:
2023-09-15 11:32:21 -04:00
time:
description: The time we greeted you
2019-08-03 21:11:09 -07:00
runs:
2023-09-15 11:32:21 -04:00
using: docker
image: Dockerfile
env:
INPUT_WHO_TO_GREET: ${{ inputs.who-to-greet }}