From cf3fd8fa0567af09f1a746d2efc53a0516de3264 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 9 Dec 2024 14:17:33 -1000 Subject: [PATCH] Document the use of `,` as the separator for allowed action sources Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- data/reusables/actions/allow-specific-actions-intro.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data/reusables/actions/allow-specific-actions-intro.md b/data/reusables/actions/allow-specific-actions-intro.md index 02e179889579..4147bcd251ed 100644 --- a/data/reusables/actions/allow-specific-actions-intro.md +++ b/data/reusables/actions/allow-specific-actions-intro.md @@ -20,6 +20,8 @@ When you choose {% data reusables.actions.policy-label-for-select-actions-workfl You can use the `*` wildcard character to match patterns. For example, to allow all actions{% ifversion actions-workflow-policy %} and reusable workflows{% endif %} in organizations that start with `space-org`, you can specify `space-org*/*`. To allow all actions{% ifversion actions-workflow-policy %} and reusable workflows{% endif %} in repositories that start with octocat, you can use `*/octocat**@*`. For more information about using the `*` wildcard, see "[AUTOTITLE](/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet)." + Use `,` to separate patterns. For example, to allow `octocat` and `octokit`, you can specify `octocat/*, octokit/*`. + {% ifversion fpt or ghec %} > [!NOTE]