From 7191f6a5d15e05a1a82cef0c0f10205b66bf803f Mon Sep 17 00:00:00 2001 From: Koji Hasegawa Date: Thu, 21 Apr 2022 07:46:06 +0900 Subject: [PATCH] Clarify reusable workflow step (#16963) Co-authored-by: Lucas Costi --- content/actions/using-workflows/reusing-workflows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/using-workflows/reusing-workflows.md b/content/actions/using-workflows/reusing-workflows.md index 293ca808eb..c3a090642a 100644 --- a/content/actions/using-workflows/reusing-workflows.md +++ b/content/actions/using-workflows/reusing-workflows.md @@ -104,7 +104,7 @@ You can define inputs and secrets, which can be passed from the caller workflow ``` {% endraw %} For details of the syntax for defining inputs and secrets, see [`on.workflow_call.inputs`](/actions/reference/workflow-syntax-for-github-actions#onworkflow_callinputs) and [`on.workflow_call.secrets`](/actions/reference/workflow-syntax-for-github-actions#onworkflow_callsecrets). -1. Reference the input or secret in the reusable workflow. +1. In the reusable workflow, reference the input or secret that you defined in the `on` key in the previous step. {% raw %} ```yaml