From 066d37365ad02c2a7f06070d88c93b75cebf2b74 Mon Sep 17 00:00:00 2001 From: Casper Smits Date: Wed, 1 Dec 2021 01:29:45 +0100 Subject: [PATCH] Document reusable workflow limitation (#11831) --- content/actions/learn-github-actions/reusing-workflows.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/actions/learn-github-actions/reusing-workflows.md b/content/actions/learn-github-actions/reusing-workflows.md index 12c0fb54f4..762284674b 100644 --- a/content/actions/learn-github-actions/reusing-workflows.md +++ b/content/actions/learn-github-actions/reusing-workflows.md @@ -70,6 +70,7 @@ Called workflows can access self-hosted runners from caller's context. This mean * Reusable workflows stored within a private repository can only be used by workflows within the same repository. * Any environment variables set in an `env` context defined at the workflow level in the caller workflow are not propagated to the called workflow. For more information about the `env` context, see "[Context and expression syntax for GitHub Actions](/actions/reference/context-and-expression-syntax-for-github-actions#env-context)." * You can't set the concurrency of a called workflow from the caller workflow. For more information about `jobs..concurrency`, see "[Workflow syntax for GitHub Actions](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idconcurrency)." +* The `strategy` property is not supported in any job that calls a reusable workflow. ## Creating a reusable workflow