We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6b2b6d commit 7c13f74Copy full SHA for 7c13f74
.github/actions/greet-user/action.yaml
@@ -3,7 +3,7 @@ description: Welcomes someone to our party
3
4
inputs:
5
# The value here is how you will reference the input in the job steps
6
- thename:
+ who_to_greet:
7
description: 'What is your name?'
8
type: string
9
required: true
@@ -15,4 +15,4 @@ runs:
15
id: greet-user
16
shell: bash
17
run: |
18
- echo "::notice::Hello, ${{ inputs.thename }} from an action!!!"
+ echo "::notice::Hello, ${{ inputs.who_to_greet }} from an action!!!"
.github/workflows/fifth.yaml
@@ -14,4 +14,4 @@ jobs:
14
- uses: actions/checkout@v3
- uses: ./.github/actions/greet-user
with:
- thename: ${{ inputs.thename }}
+ who_to_greet: ${{ inputs.thename }}
0 commit comments