Skip to content

Commit

Permalink
exercise 5
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrenf95 committed May 17, 2024
1 parent 3c48fa3 commit da0cd3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/exercise_5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
- name: Print Hello World
uses: ./.github/actions/greeting
with:
who-to-greed: "people"
message: "people"
4 changes: 2 additions & 2 deletions exercise_5_extra/actions/greeting/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ name: Hello World Action
description: A custom action that prints a hello message

inputs:
who-to-greed:
message:
description: The message to print
required: true

runs:
using: "composite"
steps:
- name: Set Greeting
run: echo "${{ inputs.who-to-greed }}"
run: echo "${{ inputs.message }}"
shell: bash

0 comments on commit da0cd3c

Please sign in to comment.