Skip to content

Welcome to the party (third) #26

Welcome to the party (third)

Welcome to the party (third) #26

Workflow file for this run

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!"