Skip to content

Commit 522fd95

Browse files
🩹 [Patch]: Normalize output variable names in GitHub Actions workflow for consistency
1 parent f8fef53 commit 522fd95

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

‎.github/workflows/Action-Test.yml‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -68,31 +68,31 @@ jobs:
6868
Install-PSResource -Name Markdown -Repository PSGallery -TrustRepository
6969
7070
# Build an array of objects for each job
71-
$ActionTestSrcSourceCodeOutcome = ${{ needs.ActionTestSrcSourceCode.outputs.Outcome }}
71+
$ActionTestSrcSourceCodeOutcome = ${{ needs.ActionTestSrcSourceCode.outputs.outcome }}
7272
$ActionTestSrcSourceCodeExpectedOutcome = "success"
7373
$ActionTestSrcSourceCodeOutcomeResult = $ActionTestSrcSourceCodeOutcome -eq $ActionTestSrcSourceCodeExpectedOutcome
74-
$ActionTestSrcSourceCodeConclusion = ${{ needs.ActionTestSrcSourceCode.outputs.Conclusion }}
74+
$ActionTestSrcSourceCodeConclusion = ${{ needs.ActionTestSrcSourceCode.outputs.conclusion }}
7575
$ActionTestSrcSourceCodeExpectedConclusion = "success"
7676
$ActionTestSrcSourceCodeConclusionResult = $ActionTestSrcSourceCodeConclusion -eq $ActionTestSrcSourceCodeExpectedConclusion
7777
78-
$ActionTestSrcCustomOutcome = ${{ needs.ActionTestSrcCustom.outputs.Outcome }}
78+
$ActionTestSrcCustomOutcome = ${{ needs.ActionTestSrcCustom.outputs.outcome }}
7979
$ActionTestSrcCustomExpectedOutcome = "success"
8080
$ActionTestSrcCustomOutcomeResult = $ActionTestSrcCustomOutcome -eq $ActionTestSrcCustomExpectedOutcome
81-
$ActionTestSrcCustomConclusion = ${{ needs.ActionTestSrcCustom.outputs.Conclusion }}
81+
$ActionTestSrcCustomConclusion = ${{ needs.ActionTestSrcCustom.outputs.conclusion }}
8282
$ActionTestSrcCustomExpectedConclusion = "success"
8383
$ActionTestSrcCustomConclusionResult = $ActionTestSrcCustomConclusion -eq $ActionTestSrcCustomExpectedConclusion
8484
85-
$ActionTestSrcWithManifestOutcome = ${{ needs.ActionTestSrcWithManifest.outputs.Outcome }}
85+
$ActionTestSrcWithManifestOutcome = ${{ needs.ActionTestSrcWithManifest.outputs.outcome }}
8686
$ActionTestSrcWithManifestExpectedOutcome = "failure"
8787
$ActionTestSrcWithManifestOutcomeResult = $ActionTestSrcWithManifestOutcome -eq $ActionTestSrcWithManifestExpectedOutcome
88-
$ActionTestSrcWithManifestConclusion = ${{ needs.ActionTestSrcWithManifest.outputs.Conclusion }}
88+
$ActionTestSrcWithManifestConclusion = ${{ needs.ActionTestSrcWithManifest.outputs.conclusion }}
8989
$ActionTestSrcWithManifestExpectedConclusion = "success"
9090
$ActionTestSrcWithManifestConclusionResult = $ActionTestSrcWithManifestConclusion -eq $ActionTestSrcWithManifestExpectedConclusion
9191
92-
$ActionTestOutputsOutcome = ${{ needs.ActionTestOutputs.outputs.Outcome }}
92+
$ActionTestOutputsOutcome = ${{ needs.ActionTestOutputs.outputs.outcome }}
9393
$ActionTestOutputsExpectedOutcome = "success"
9494
$ActionTestOutputsOutcomeResult = $ActionTestOutputsOutcome -eq $ActionTestOutputsExpectedOutcome
95-
$ActionTestOutputsConclusion = ${{ needs.ActionTestOutputs.outputs.Conclusion }}
95+
$ActionTestOutputsConclusion = ${{ needs.ActionTestOutputs.outputs.conclusion }}
9696
$ActionTestOutputsExpectedConclusion = "success"
9797
$ActionTestOutputsConclusionResult = $ActionTestOutputsConclusion -eq $ActionTestOutputsExpectedConclusion
9898

0 commit comments

Comments
 (0)