Created
May 27, 2022 08:21
-
-
Save twyle/2f14ac53967fedd2f9ee5a505ea9199b 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: "GitHub Action Template" | |
description: "A template for creating GitHub Actions." | |
author: "Lyle Okoth" | |
inputs: | |
myinput: | |
description: "The users name." | |
default: "world" | |
outputs: | |
myoutput: | |
description: "A greeting with the users name i.e hello world" | |
runs: | |
using: "docker" | |
image: "Dockerfile" | |
branding: | |
icon: 'award' | |
color: 'green' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment