Skip to content

Commit 70f75e7

Browse files
🩹 [Patch]: Add additional input parameters to action.yml for enhanced configuration options
1 parent 4c7c02e commit 70f75e7

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

action.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,3 +281,40 @@ runs:
281281
TestResult_TestSuiteName: ${{ inputs.TestResult_TestSuiteName }}
282282
Path: ${{ github.action_path }}/scripts/tests/PSScriptAnalyzer
283283
Run_Path: ${{ fromJson(steps.paths.outputs.result).CodePath }}
284+
ReportAsJson: ${{ inputs.ReportAsJson }}
285+
StepSummary_Enabled: ${{ inputs.StepSummary_Enabled }}
286+
StepSummary_ShowTestOverview: ${{ inputs.StepSummary_ShowTestOverview }}
287+
StepSummary_ShowTests: ${{ inputs.StepSummary_ShowTests }}
288+
StepSummary_ShowConfiguration: ${{ inputs.StepSummary_ShowConfiguration }}
289+
Run_ExcludePath: ${{ inputs.Run_ExcludePath }}
290+
Run_Exit: ${{ inputs.Run_Exit }}
291+
Run_Throw: ${{ inputs.Run_Throw }}
292+
Run_SkipRun: ${{ inputs.Run_SkipRun }}
293+
Run_SkipRemainingOnFailure: ${{ inputs.Run_SkipRemainingOnFailure }}
294+
CodeCoverage_Enabled: ${{ inputs.CodeCoverage_Enabled }}
295+
CodeCoverage_OutputFormat: ${{ inputs.CodeCoverage_OutputFormat }}
296+
CodeCoverage_OutputPath: ${{ inputs.CodeCoverage_OutputPath }}
297+
CodeCoverage_OutputEncoding: ${{ inputs.CodeCoverage_OutputEncoding }}
298+
CodeCoverage_Path: ${{ inputs.CodeCoverage_Path }}
299+
CodeCoverage_ExcludeTests: ${{ inputs.CodeCoverage_ExcludeTests }}
300+
CodeCoverage_RecursePaths: ${{ inputs.CodeCoverage_RecursePaths }}
301+
CodeCoverage_CoveragePercentTarget: ${{ inputs.CodeCoverage_CoveragePercentTarget }}
302+
CodeCoverage_UseBreakpoints: ${{ inputs.CodeCoverage_UseBreakpoints }}
303+
CodeCoverage_SingleHitBreakpoints: ${{ inputs.CodeCoverage_SingleHitBreakpoints }}
304+
TestResult_Enabled: ${{ inputs.TestResult_Enabled }}
305+
TestResult_OutputFormat: ${{ inputs.TestResult_OutputFormat }}
306+
TestResult_OutputPath: ${{ inputs.TestResult_OutputPath }}
307+
TestResult_OutputEncoding: ${{ inputs.TestResult_OutputEncoding }}
308+
Should_ErrorAction: ${{ inputs.Should_ErrorAction }}
309+
Debug_ShowFullErrors: ${{ inputs.Debug_ShowFullErrors }}
310+
Debug_WriteDebugMessages: ${{ inputs.Debug_WriteDebugMessages }}
311+
Debug_WriteDebugMessagesFrom: ${{ inputs.Debug_WriteDebugMessagesFrom }}
312+
Debug_ShowNavigationMarkers: ${{ inputs.Debug_ShowNavigationMarkers }}
313+
Debug_ReturnRawResultObject: ${{ inputs.Debug_ReturnRawResultObject }}
314+
Output_Verbosity: ${{ inputs.Output_Verbosity }}
315+
Output_StackTraceVerbosity: ${{ inputs.Output_StackTraceVerbosity }}
316+
Output_CIFormat: ${{ inputs.Output_CIFormat }}
317+
Output_CILogLevel: ${{ inputs.Output_CILogLevel }}
318+
Output_RenderMode: ${{ inputs.Output_RenderMode }}
319+
TestDrive_Enabled: ${{ inputs.TestDrive_Enabled }}
320+
TestRegistry_Enabled: ${{ inputs.TestRegistry_Enabled }}

0 commit comments

Comments
 (0)