Created
May 27, 2022 07:22
-
-
Save twyle/e5b2616c19962401a509a79c0e78c47b 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