From 749954ef0e10f0e5de93cc98bd674a7f0350beea 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/sharing-automations/creating-actions/metadata-syntax-for-github-actions.md b/content/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions.md index 9413eba52137..532e46c1d6d8 100644 --- a/content/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions.md +++ b/content/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions.md @@ -72,11 +72,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` @@ -84,7 +84,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` @@ -108,11 +108,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