added Thresholds parameter to action definition #15

This commit is contained in:
irongut
2021-10-18 01:30:03 +01:00
parent 4a0dc323d3
commit ecc89a90a8
2 changed files with 7 additions and 1 deletions
@@ -16,7 +16,7 @@ namespace CodeCoverageSummary
[Option(longName: "output", Required = false, HelpText = "Output Type - console, file or both.", Default = "console")]
public string Output { get; set; }
[Option(longName: "thresholds", Required = false, HelpText = "Badge colour thresholds.", Default = "50 75")]
[Option(longName: "thresholds", Required = false, HelpText = "Badge colour threshold percentages.", Default = "50 75")]
public string Thresholds { get; set; }
}
}