From 4ce7e1036cdf25334bab93de4936da230f1d8034 Mon Sep 17 00:00:00 2001 From: Piotr Date: Fri, 27 Sep 2024 21:34:27 +0200 Subject: [PATCH] Update metadata-syntax-for-github-actions.md --- .../metadata-syntax-for-github-actions.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/actions/creating-actions/metadata-syntax-for-github-actions.md b/content/actions/creating-actions/metadata-syntax-for-github-actions.md index 296453f7a2e1..350c8890545f 100644 --- a/content/actions/creating-actions/metadata-syntax-for-github-actions.md +++ b/content/actions/creating-actions/metadata-syntax-for-github-actions.md @@ -71,11 +71,11 @@ For example, if a workflow defined the `num-octocats` and `octocat-eye-color` in ### `inputs.` -**Required** A `string` identifier to associate with the input. The value of `` is a map of the input's metadata. The `` must be a unique identifier within the `inputs` object. The `` must start with a letter or `_` and contain only alphanumeric characters, spaces, `-`, or `_`. +**Required** A `string` identifier to associate with the input. The value of `` is a map of the input's metadata. The `` must be a unique identifier within the `inputs` object. The `` must start with a letter or `_` and contain only alphanumeric characters, `-`, or `_`. ### `inputs..description` -**Optional** A `string` description of the input parameter. +**Required** A `string` description of the input parameter. ### `inputs..required` @@ -83,7 +83,7 @@ For example, if a workflow defined the `num-octocats` and `octocat-eye-color` in ### `inputs..default` -**Optional** A `string` representing the default value. The default value is used when an input parameter isn't specified in a workflow file. If input is not required and default value is not specified, {% data variables.product.prodname_dotcom %} will use empty string as a default value. +**Optional** A `string` representing the default value. The default value is used when an input parameter isn't specified in a workflow file. ### `inputs..deprecationMessage` @@ -107,11 +107,11 @@ outputs: ### `outputs.` -**Required** A `string` identifier to associate with the output. The value of `` is a map of the output's metadata. The `` must be a unique identifier within the `outputs` object. The `` must start with a letter or `_` and contain only alphanumeric characters, space, `-`, or `_`. +**Required** A `string` identifier to associate with the output. The value of `` is a map of the output's metadata. The `` must be a unique identifier within the `outputs` object. The `` must start with a letter or `_` and contain only alphanumeric characters, `-`, or `_`. ### `outputs..description` -**Optional** A `string` description of the output parameter. +**Required** A `string` description of the output parameter. ## `outputs` for composite actions