forked from ubiquity-os-marketplace/command-start-stop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
137 lines (137 loc) · 4.2 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "Start | Stop",
"description": "Assign or un-assign yourself from an issue/task.",
"ubiquity:listeners": ["issue_comment.created", "issues.assigned", "issues.unassigned", "pull_request.opened", "pull_request.edited"],
"commands": {
"start": {
"ubiquity:example": "/start",
"description": "Assign yourself and/or others to the issue/task.",
"parameters": {
"type": "object",
"properties": {
"teammates": {
"description": "Users other than yourself to assign to the issue",
"type": "array",
"items": {
"description": "Github username",
"type": "string"
}
}
}
}
},
"stop": {
"ubiquity:example": "/stop",
"description": "Unassign yourself from the issue/task.",
"parameters": {
"type": "object",
"properties": {}
}
}
},
"configuration": {
"default": {},
"type": "object",
"properties": {
"reviewDelayTolerance": {
"default": "1 Day",
"examples": ["1 Day", "5 Days"],
"description": "When considering a user for a task: if they have existing PRs with no reviews, how long should we wait before 'increasing' their assignable task limit?",
"type": "string"
},
"taskStaleTimeoutDuration": {
"default": "30 Days",
"examples": ["1 Day", "5 Days"],
"description": "When displaying the '/start' response, how long should we wait before considering a task 'stale' and provide a warning?",
"type": "string"
},
"startRequiresWallet": {
"default": true,
"description": "If true, users must set their wallet address with the /wallet command before they can start tasks.",
"type": "boolean"
},
"maxConcurrentTasks": {
"default": {
"member": 10,
"contributor": 2
},
"description": "The maximum number of tasks a user can have assigned to them at once, based on their role.",
"examples": [
{
"member": 5,
"contributor": 1
}
],
"type": "object",
"patternProperties": {
"^(.*)$": {
"type": "integer"
}
}
},
"assignedIssueScope": {
"default": "org",
"description": "When considering a user for a task: should we consider their assigned issues at the org, repo, or network level?",
"examples": ["org", "repo", "network"],
"anyOf": [
{
"const": "org",
"type": "string"
},
{
"const": "repo",
"type": "string"
},
{
"const": "network",
"type": "string"
}
]
},
"emptyWalletText": {
"default": "Please set your wallet address with the /wallet command first and try again.",
"description": "a message to display when a user tries to start a task without setting their wallet address.",
"type": "string"
},
"rolesWithReviewAuthority": {
"default": ["OWNER", "ADMIN", "MEMBER", "COLLABORATOR"],
"uniqueItems": true,
"description": "When considering a user for a task: which roles should be considered as having review authority? All others are ignored.",
"examples": [
["OWNER", "ADMIN"],
["MEMBER", "COLLABORATOR"]
],
"type": "array",
"items": {
"anyOf": [
{
"const": "OWNER",
"type": "string"
},
{
"const": "ADMIN",
"type": "string"
},
{
"const": "MEMBER",
"type": "string"
},
{
"const": "COLLABORATOR",
"type": "string"
}
]
}
},
"requiredLabelsToStart": {
"default": [],
"description": "If set, a task must have at least one of these labels to be started.",
"examples": [["Priority: 5 (Emergency)"], ["Good First Issue"]],
"type": "array",
"items": {
"type": "string"
}
}
}
}
}