Skip to content

Commit 33cefa1

Browse files
Update greet-a-person.yml
1 parent 8e472f9 commit 33cefa1

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/greet-a-person.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@ name: Greet a persion
66
# Controls when the action will run. Workflow runs when manually triggered using the UI or API.
77
on:
88
workflow_dispatch:
9-
# Inputs the workflow accepts.
10-
inputs:
11-
name:
12-
# Friendly description to be shown in the UI instead of 'name'
13-
description: "Persion to greet"
14-
# Default value if no value is explicitly provided
15-
default: "World"
16-
# Input has to be provided for the workflow to run
17-
required: true
18-
# Input Type (string, choice, boolean)
19-
type: string
9+
# Inputs the workflow accepts.
10+
inputs:
11+
name:
12+
# Friendly description to be shown in the UI instead of 'name'
13+
description: "Persion to greet"
14+
# Default value if no value is explicitly provided
15+
default: "World"
16+
# Input has to be provided for the workflow to run
17+
required: true
18+
# Input Type (string, choice, boolean)
19+
type: string
2020
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
2121
jobs:
2222
# This workflow contains a single job called "greet"
2323
greet-persion:
2424
name: Greet a persion
2525
runs-on:
2626
- ubuntu-latest
27-
setps:
27+
steps:
2828
- name: Send greeting
2929
run: echo "Hello ${{ github.event.inputs.name }}"

0 commit comments

Comments
 (0)