From e5b1d77d8df7cd75a06a5eea1bc52ff947f340bd Mon Sep 17 00:00:00 2001 From: mfenerich <142222759+mfenerich@users.noreply.github.com> Date: Wed, 2 Oct 2024 19:24:38 +0200 Subject: [PATCH] Fix: Correct information about matrix strategy usage for entire workflows The repository incorrectly stated that the matrix strategy can be used to parallelize entire workflows. This commit updates the documentation to clarify that matrix strategy only applies to jobs within a single workflow, not across multiple workflows. --- content/questions/actions/question-014.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/questions/actions/question-014.md b/content/questions/actions/question-014.md index 0321511f..37d4d0ac 100644 --- a/content/questions/actions/question-014.md +++ b/content/questions/actions/question-014.md @@ -15,5 +15,5 @@ jobs: os: [ubuntu-latest, windows-latest] ``` > https://docs.github.com/en/actions/using-workflows/reusing-workflows#using-a-matrix-strategy-with-a-reusable-workflow -1. [ ] No -1. [x] Yes +1. [x] No +1. [ ] Yes