From 2ffc3fe44c8d23bf36295f0095c947b51ad7b0e8 Mon Sep 17 00:00:00 2001 From: Salil Date: Tue, 9 Dec 2025 15:00:23 -0800 Subject: [PATCH] Updating the max number of inputs to 25 for dotcom/proxima (#58775) Co-authored-by: sunbrye Co-authored-by: Sunbrye Ly <56200261+sunbrye@users.noreply.github.com> --- data/reusables/actions/inputs-vs-github-event-inputs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/actions/inputs-vs-github-event-inputs.md b/data/reusables/actions/inputs-vs-github-event-inputs.md index cf9dff3cbb..c2cace7aa0 100644 --- a/data/reusables/actions/inputs-vs-github-event-inputs.md +++ b/data/reusables/actions/inputs-vs-github-event-inputs.md @@ -1,4 +1,4 @@ > [!NOTE] > * The workflow will also receive the inputs in the `github.event.inputs` context. The information in the `inputs` context and `github.event.inputs` context is identical except that the `inputs` context preserves Boolean values as Booleans instead of converting them to strings. The `choice` type resolves to a string and is a single selectable option. -> * The maximum number of top-level properties for `inputs` is 10. +> * The maximum number of top-level properties for `inputs` is {% ifversion fpt or ghec %}25 {% else %}10 {% endif %}. > * The maximum payload for `inputs` is 65,535 characters.