From 3f164030807dcdfcef32070dc514d5873ae7be6e Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 18 Apr 2023 16:22:05 +0000 Subject: [PATCH] Updating GHES workflows --- automation/manual.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/automation/manual.yml b/automation/manual.yml index 4a7131e..11b2e35 100644 --- a/automation/manual.yml +++ b/automation/manual.yml @@ -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 }}" \ No newline at end of file + run: echo "Hello ${{ inputs.name }}"