From 29c5c96739356c70218d01f9b6f35f5fdcb1e308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Papp?= Date: Thu, 25 Jul 2024 14:16:58 +0100 Subject: [PATCH] Add critical threshold to cicheck help --- cmd/cicheck.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cicheck.go b/cmd/cicheck.go index 5b5b992..99597f9 100644 --- a/cmd/cicheck.go +++ b/cmd/cicheck.go @@ -52,5 +52,5 @@ var cicheckCmd = &cobra.Command{ func init() { RootCmd.AddCommand(cicheckCmd) cicheckCmd.Flags().StringP( - "risk-threshold", "r", "low", "Risk threshold to fail the command. Available options: low, medium, high") + "risk-threshold", "r", "low", "Risk threshold to fail the command. Available options: low, medium, high, critical") }