Last active
August 16, 2020 05:29
-
-
Save luandevpro/40cf6cea48776909893aa183f1e5fd69 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
name: "my hello action" | |
description: "say hello with GitHub Actions" | |
inputs: | |
firstGreeting: | |
description: "who would you like to greet in the console" | |
required: true | |
default: "Hubot" | |
secondGreeting: | |
description: "another person to greet" | |
required: true | |
default: "Mona the Octocat" | |
thirdGreeting: | |
description: "a third greeting" | |
required: false | |
runs: | |
using: "docker" | |
image: "Dockerfile" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment