diff --git a/Actions/DetermineDeliveryTargets/action.yaml b/Actions/DetermineDeliveryTargets/action.yaml index 1a3050933..af8d91867 100644 --- a/Actions/DetermineDeliveryTargets/action.yaml +++ b/Actions/DetermineDeliveryTargets/action.yaml @@ -18,7 +18,7 @@ outputs: description: An array of Delivery Targets in compressed JSON format value: ${{ steps.determineDeliveryTargets.outputs.DeliveryTargetsJson }} ContextSecrets: - description: A comma-seperated list of Context Secret names used + description: A comma-separated list of Context Secret names used value: ${{ steps.determineDeliveryTargets.outputs.ContextSecrets }} runs: using: composite diff --git a/Templates/AppSource App/.github/workflows/IncrementVersionNumber.yaml b/Templates/AppSource App/.github/workflows/IncrementVersionNumber.yaml index de98d25fd..5e4a8b41f 100644 --- a/Templates/AppSource App/.github/workflows/IncrementVersionNumber.yaml +++ b/Templates/AppSource App/.github/workflows/IncrementVersionNumber.yaml @@ -6,7 +6,7 @@ on: workflow_dispatch: inputs: projects: - description: Comma-seperated list of project name patterns if the repository is setup for multiple projects (default is * for all projects) + description: Comma-separated list of project name patterns if the repository is setup for multiple projects (default is * for all projects) required: false default: '*' versionNumber: diff --git a/Tests/DetermineDeliveryTargets.Test.ps1 b/Tests/DetermineDeliveryTargets.Test.ps1 index 102ae1c9d..238b79a91 100644 --- a/Tests/DetermineDeliveryTargets.Test.ps1 +++ b/Tests/DetermineDeliveryTargets.Test.ps1 @@ -33,7 +33,7 @@ Describe "DetermineDeliveryTargets Action Test" { } $outputs = [ordered]@{ "DeliveryTargetsJson" = "An array of Delivery Targets in compressed JSON format" - "ContextSecrets" = "A comma-seperated list of Context Secret names used" + "ContextSecrets" = "A comma-separated list of Context Secret names used" } YamlTest -scriptRoot $scriptRoot -actionName $actionName -actionScript $actionScript -permissions $permissions -outputs $outputs }