You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -264,6 +264,7 @@ jobs:
264
264
| `Path` | Path to where tests are located or a configuration file. | *(none)* |
265
265
| `ReportAsJson` | Output generated reports in JSON format in addition to the configured format through Pester. | `true` |
266
266
| `Prescript` | Script to be executed before the test run. This script is executed in the same context as the test run. | *(none)* |
267
+
| `Notice_Mode` | Controls when to show notices for test completion. Allows "Full" (show on success and failure), "Failed" (show only on failure), or "None" (disable notices). | `Failed` |
267
268
| `StepSummary_Mode` | Controls which tests to show in the GitHub step summary. Allows "Full" (all tests), "Failed" (only failed tests), or "None" (disable step summary). | `Failed` |
268
269
| `StepSummary_ShowTestOverview` | Controls whether to show the test overview table in the GitHub step summary. | `false` |
269
270
| `StepSummary_ShowConfiguration` | Controls whether to show the configuration details in the GitHub step summary. | `false` |
Copy file name to clipboardExpand all lines: action.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,11 @@ inputs:
19
19
description: |
20
20
Script to be executed before the test run. This script is executed in the same context as the test run.
21
21
required: false
22
+
Notice_Mode:
23
+
description: |
24
+
Controls when to show notices for test completion. Allows "Full" (show on success and failure), "Failed" (show only on failure), or "None" (disable notices).
25
+
required: false
26
+
default: 'Failed'
22
27
StepSummary_Mode:
23
28
description: |
24
29
Controls which tests to show in the GitHub step summary. Allows "Full" (show all tests), "Failed" (only failed tests), or "None" (disable step summary).
0 commit comments