forked from ubiquity-os-marketplace/daemon-disqualifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 1.12 KB
/
manifest.json
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
{
"name": "User activity watcher",
"description": "Watches user activity on issues, sends reminders on deadlines, and unassign inactive users.",
"ubiquity:listeners": ["pull_request_review_comment.created", "issue_comment.created", "push"],
"configuration": {
"default": {},
"type": "object",
"properties": {
"warning": {
"default": "3.5 days",
"type": "string"
},
"watch": {
"default": {},
"type": "object",
"properties": {
"optOut": {
"default": [],
"type": "array",
"items": {
"type": "string"
}
}
}
},
"disqualification": {
"default": "7 days",
"type": "string"
},
"pullRequestRequired": {
"default": true,
"type": "boolean"
},
"eventWhitelist": {
"default": ["pull_request.review_requested", "pull_request.ready_for_review", "pull_request_review_comment.created", "issue_comment.created", "push"],
"type": "array",
"items": {
"type": "string"
}
}
}
}
}