From 331cae23092d4311eaf7acbf46ddd9b1460e2185 Mon Sep 17 00:00:00 2001 From: antonioelumir Date: Thu, 26 Sep 2024 10:41:05 -0600 Subject: [PATCH] Update action.yml --- .github/actions/hello-world-composite-action/action.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/actions/hello-world-composite-action/action.yml b/.github/actions/hello-world-composite-action/action.yml index 18611d5..102df17 100644 --- a/.github/actions/hello-world-composite-action/action.yml +++ b/.github/actions/hello-world-composite-action/action.yml @@ -19,3 +19,11 @@ runs: shell: bash - run: echo "${{ github.action_path }}" >> $GITHUB_PATH shell: bash + - name: Hello world + uses: actions/hello-world-javascript-action@main + with: + who-to-greet: "${{ inputs.who-to-greet }}" + id: hello + - name: Echo the greeting's time + run: echo 'The time was ${{ steps.hello.outputs.time }}.' + shell: bash