Created
May 19, 2022 11:45
-
-
Save twyle/2596075bfea2ea1503950a6811842793 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# action.yml | |
name: 'Hello World' | |
description: 'Greet someone and record the time' | |
inputs: | |
who-to-greet: # id of input | |
description: 'Who to greet' | |
required: true | |
default: 'World' | |
outputs: | |
time: # id of output | |
description: 'The time we greeted you' | |
runs: | |
using: 'docker' | |
image: 'Dockerfile' | |
args: | |
- ${{ inputs.who-to-greet }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment