From 9b0537d1926f8e54a890ba73ec1fa20a6191c92e Mon Sep 17 00:00:00 2001 From: yaronpri <89332819+yaronpri@users.noreply.github.com> Date: Tue, 6 Dec 2022 09:00:44 +0200 Subject: [PATCH] Emphasise the use of github.action_path (#22464) Co-authored-by: Lucas Costi --- content/actions/creating-actions/creating-a-composite-action.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/creating-actions/creating-a-composite-action.md b/content/actions/creating-actions/creating-a-composite-action.md index 382e81006b..f54adf093a 100644 --- a/content/actions/creating-actions/creating-a-composite-action.md +++ b/content/actions/creating-actions/creating-a-composite-action.md @@ -94,7 +94,7 @@ Before you begin, you'll create a repository on {% ifversion ghae %}{% data vari shell: bash ``` {% endraw %} - This file defines the `who-to-greet` input, maps the random generated number to the `random-number` output variable, and runs the `goodbye.sh` script. It also tells the runner how to execute the composite action. + This file defines the `who-to-greet` input, maps the random generated number to the `random-number` output variable, adds the action's path to the runner system path (to locate the `goodbye.sh` script during execution), and runs the `goodbye.sh` script. For more information about managing outputs, see "[`outputs` for a composite action](/actions/creating-actions/metadata-syntax-for-github-actions#outputs-for-composite-actions)".