Skip to content

Hello World Manually Workflow #3

Hello World Manually Workflow

Hello World Manually Workflow #3

name: Hello World Manually Workflow
on:
workflow_dispatch:
inputs:
greeting:
decription: A greeting line.
required: true
type: string
name:
description: Whom to greet.
required: true
type: string
completion:
description: A line after the greeting.
jobs:
hello-world:
runs-on: ubuntu-latest
steps:
- id: preparation
name: Preparation
run: echo "Preparing for the greeting."
- id: greeting
name: Greeting
run: echo "${{inputs.greeting}} ${{inputs.name}}!"
- id: completion
name: Completion
run: echo "${{inputs.completion}}"