We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentc17ebfe commitc141bf4Copy full SHA for c141bf4
pkg/github/code_scanning.go
@@ -90,14 +90,14 @@ func ListCodeScanningAlerts(getClient GetClientFn, t translations.TranslationHel
90
mcp.Required(),
91
mcp.Description("The name of the repository."),
92
),
93
-mcp.WithString("ref",
94
-mcp.Description("The Git reference for the results you want to list."),
95
-),
96
mcp.WithString("state",
97
mcp.Description("Filter code scanning alerts by state. Defaults to open"),
98
mcp.DefaultString("open"),
99
mcp.Enum("open","closed","dismissed","fixed"),
100
+mcp.WithString("ref",
+mcp.Description("The Git reference for the results you want to list."),
+),
101
mcp.WithString("severity",
102
mcp.Description("Filter code scanning alerts by severity"),
103
mcp.Enum("critical","high","medium","low","warning","note","error"),