Class WorkflowResult
Result of executing the entire workflow (all steps).
public class WorkflowResult
- Inheritance
-
WorkflowResult
- Inherited Members
Properties
Duration
Total time taken for all steps.
public TimeSpan Duration { get; init; }
Property Value
StepResults
Individual results for each step that was executed.
public List<StepResult> StepResults { get; init; }
Property Value
StepsFailed
Number of steps that failed.
public int StepsFailed { get; }
Property Value
StepsRun
Number of steps that were executed (may be less than registered if fail-fast triggered).
public int StepsRun { get; }
Property Value
Success
Whether all steps completed successfully.
public bool Success { get; init; }
Property Value
WasCancelled
Whether the workflow was cancelled by the user (Ctrl+C).
public bool WasCancelled { get; init; }
Property Value
WorkflowName
Workflow name (currently always "build").
public string WorkflowName { get; init; }