From 5ce049c3434eea804188b086e1d84166834b7797 Mon Sep 17 00:00:00 2001 From: Antonio Date: Wed, 23 Mar 2022 02:00:22 +0200 Subject: [PATCH 1/2] added limitation for inputs for a workflow_dispatch event --- .../managing-workflow-runs/manually-running-a-workflow.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/actions/managing-workflow-runs/manually-running-a-workflow.md b/content/actions/managing-workflow-runs/manually-running-a-workflow.md index c0efceadd129..ea93c2714a0c 100644 --- a/content/actions/managing-workflow-runs/manually-running-a-workflow.md +++ b/content/actions/managing-workflow-runs/manually-running-a-workflow.md @@ -73,4 +73,10 @@ gh run watch When using the REST API, you configure the `inputs` and `ref` as request body parameters. If the inputs are omitted, the default values defined in the workflow file are used. +{% note %} + +**Note:** You can define up to 10 `inputs` for a `workflow_dispatch` event + +{% endnote %} + For more information about using the REST API, see the "[Create a workflow dispatch event](/rest/reference/actions/#create-a-workflow-dispatch-event)." From b3bd59bca67af611fcaec5c7460cb750d35e5ca3 Mon Sep 17 00:00:00 2001 From: Melanie Yarbrough <11952755+myarb@users.noreply.github.com> Date: Wed, 4 May 2022 17:31:33 -0400 Subject: [PATCH 2/2] Update content/actions/managing-workflow-runs/manually-running-a-workflow.md --- .../managing-workflow-runs/manually-running-a-workflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/managing-workflow-runs/manually-running-a-workflow.md b/content/actions/managing-workflow-runs/manually-running-a-workflow.md index ea93c2714a0c..c8fd986c665c 100644 --- a/content/actions/managing-workflow-runs/manually-running-a-workflow.md +++ b/content/actions/managing-workflow-runs/manually-running-a-workflow.md @@ -75,7 +75,7 @@ When using the REST API, you configure the `inputs` and `ref` as request body pa {% note %} -**Note:** You can define up to 10 `inputs` for a `workflow_dispatch` event +**Note:** You can define up to 10 `inputs` for a `workflow_dispatch` event. {% endnote %}