Merge pull request #2013 from marcospgp/patch-1

Update `github.event.inputs` to `inputs` in manual.yml
This commit is contained in:
James M. Greene
2023-04-18 11:21:42 -05:00
committed by GitHub
+3 -1
View File
@@ -15,6 +15,8 @@ on:
default: 'World'
# Input has to be provided for the workflow to run
required: true
# The data type of the input
type: string
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
@@ -27,4 +29,4 @@ jobs:
steps:
# Runs a single command using the runners shell
- name: Send greeting
run: echo "Hello ${{ github.event.inputs.name }}"
run: echo "Hello ${{ inputs.name }}"