diff --git a/.github/actions/greet-user/action.yaml b/.github/actions/greet-user/action.yaml index b1016ea..fad70ae 100644 --- a/.github/actions/greet-user/action.yaml +++ b/.github/actions/greet-user/action.yaml @@ -3,7 +3,7 @@ description: Welcomes someone to our party inputs: # The value here is how you will reference the input in the job steps - thename: + who_to_greet: description: 'What is your name?' type: string required: true @@ -15,4 +15,4 @@ runs: id: greet-user shell: bash run: | - echo "::notice::Hello, ${{ inputs.thename }} from an action!!!" + echo "::notice::Hello, ${{ inputs.who_to_greet }} from an action!!!" diff --git a/.github/workflows/fifth.yaml b/.github/workflows/fifth.yaml index 8f8442b..46c867c 100644 --- a/.github/workflows/fifth.yaml +++ b/.github/workflows/fifth.yaml @@ -14,4 +14,4 @@ jobs: - uses: actions/checkout@v3 - uses: ./.github/actions/greet-user with: - thename: ${{ inputs.thename }} \ No newline at end of file + who_to_greet: ${{ inputs.thename }} \ No newline at end of file