-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathupdate_dependabot_alert.snap
More file actions
54 lines (54 loc) · 1.32 KB
/
update_dependabot_alert.snap
File metadata and controls
54 lines (54 loc) · 1.32 KB
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
47
48
49
50
51
52
53
54
{
"annotations": {
"title": "Update Dependabot alert"
},
"description": "Update the state of a Dependabot alert in a GitHub repository.",
"inputSchema": {
"properties": {
"alertNumber": {
"description": "The number of the alert.",
"type": "number"
},
"dismissedComment": {
"description": "An optional comment associated with dismissing the alert. Maximum 280 characters.",
"maxLength": 280,
"type": "string"
},
"dismissedReason": {
"description": "Required when state is dismissed. The reason for dismissing the alert.",
"enum": [
"fix_started",
"inaccurate",
"no_bandwidth",
"not_used",
"tolerable_risk"
],
"type": "string"
},
"owner": {
"description": "The owner of the repository.",
"type": "string"
},
"repo": {
"description": "The name of the repository.",
"type": "string"
},
"state": {
"description": "The state to set for the alert.",
"enum": [
"open",
"dismissed"
],
"type": "string"
}
},
"required": [
"owner",
"repo",
"alertNumber",
"state"
],
"type": "object"
},
"name": "update_dependabot_alert"
}