File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
77on :
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
2121jobs :
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 }}"
You can’t perform that action at this time.
0 commit comments