-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Expand file tree
/
Copy pathlist_dependabot_alerts.snap
More file actions
46 lines (46 loc) · 1021 Bytes
/
list_dependabot_alerts.snap
File metadata and controls
46 lines (46 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"annotations": {
"readOnlyHint": true,
"title": "List dependabot alerts"
},
"description": "List dependabot alerts in a GitHub repository.",
"inputSchema": {
"type": "object",
"required": [
"owner",
"repo"
],
"properties": {
"owner": {
"type": "string",
"description": "The owner of the repository."
},
"repo": {
"type": "string",
"description": "The name of the repository."
},
"severity": {
"type": "string",
"description": "Filter dependabot alerts by severity",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"state": {
"type": "string",
"description": "Filter dependabot alerts by state. Defaults to open",
"default": "open",
"enum": [
"open",
"fixed",
"dismissed",
"auto_dismissed"
]
}
}
},
"name": "list_dependabot_alerts"
}