Updating GHES workflows
This commit is contained in:
@@ -15,6 +15,8 @@ on:
|
|||||||
default: 'World'
|
default: 'World'
|
||||||
# Input has to be provided for the workflow to run
|
# Input has to be provided for the workflow to run
|
||||||
required: true
|
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
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
jobs:
|
jobs:
|
||||||
@@ -27,4 +29,4 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
# Runs a single command using the runners shell
|
# Runs a single command using the runners shell
|
||||||
- name: Send greeting
|
- name: Send greeting
|
||||||
run: echo "Hello ${{ github.event.inputs.name }}"
|
run: echo "Hello ${{ inputs.name }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user