Last active
August 16, 2020 05:40
-
-
Save luandevpro/ef8a2ef462f9eaeae345d939fb0c98df to your computer and use it in GitHub Desktop.
This file contains 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