Welcome to the party (third) #25
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: Welcome to the party (third) | |
on: | |
workflow_dispatch: | |
inputs: | |
# The value here is how you will reference the input in the job steps | |
thename: | |
description: 'What is your name?' | |
type: string | |
required: true | |
jobs: | |
say_hello: | |
name: "Let's greet the user!" | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Hello there, ${{ inputs.thename }}!" | |
- run: echo "I am step2!" |