forked from ubiquity-os-marketplace/command-start-stop
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
320 lines (320 loc) · 9.94 KB
/
manifest.json
File metadata and controls
320 lines (320 loc) · 9.94 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
{
"name": "Start | Stop",
"description": "Assign or un-assign yourself from an issue/task.",
"ubiquity:listeners": ["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": {
"description": "The maximum number of tasks a user can have assigned to them at once, based on their role.",
"examples": [
{
"collaborator": 10,
"contributor": 2
}
],
"default": {},
"type": "object",
"properties": {
"collaborator": {
"default": 10,
"type": "number"
},
"contributor": {
"default": 2,
"type": "number"
}
}
},
"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": "object",
"properties": {
"name": {
"description": "The name of the required labels to start the task.",
"type": "string"
},
"allowedRoles": {
"description": "The list of allowed roles to start the task with the given label.",
"uniqueItems": true,
"default": [],
"examples": [["collaborator", "contributor"]],
"type": "array",
"items": {
"anyOf": [
{
"const": "collaborator",
"type": "string"
},
{
"const": "contributor",
"type": "string"
}
]
}
}
},
"required": ["name"]
}
},
"taskAccessControl": {
"default": {},
"type": "object",
"properties": {
"usdPriceMax": {
"default": {},
"description": "The maximum USD price a user can start a task with, based on their role. Set to a negative value to indicate only core operations (only collaborators) can be started.",
"examples": [
{
"collaborator": "Infinity",
"contributor": 0
},
{
"collaborator": "Infinity",
"contributor": -1
}
],
"type": "object",
"properties": {
"collaborator": {
"default": "Infinity",
"anyOf": [
{
"type": "number"
},
{
"const": "Infinity",
"type": "string"
}
]
},
"contributor": {
"default": "Infinity",
"anyOf": [
{
"type": "number"
},
{
"const": "Infinity",
"type": "string"
}
]
}
}
},
"accountRequiredAge": {
"default": {
"minimumDays": 365.25
},
"type": "object",
"properties": {
"minimumDays": {
"default": 365.25,
"minimum": 0,
"description": "Minimum number of days a GitHub account must exist before starting a task.",
"examples": [0, 30, 365.25],
"type": "number"
}
}
},
"experience": {
"default": {
"priorityThresholds": [
{
"label": "Priority: 0 (Regression)",
"minimumXp": -2000
},
{
"label": "Priority: 1 (Normal)",
"minimumXp": -1000
},
{
"label": "Priority: 2 (Medium)",
"minimumXp": 0
},
{
"label": "Priority: 3 (High)",
"minimumXp": 1000
},
{
"label": "Priority: 4 (Urgent)",
"minimumXp": 2000
},
{
"label": "Priority: 5 (Emergency)",
"minimumXp": 3000
}
]
},
"type": "object",
"properties": {
"priorityThresholds": {
"default": [
{
"label": "Priority: 0 (Regression)",
"minimumXp": -2000
},
{
"label": "Priority: 1 (Normal)",
"minimumXp": -1000
},
{
"label": "Priority: 2 (Medium)",
"minimumXp": 0
},
{
"label": "Priority: 3 (High)",
"minimumXp": 1000
},
{
"label": "Priority: 4 (Urgent)",
"minimumXp": 2000
},
{
"label": "Priority: 5 (Emergency)",
"minimumXp": 3000
}
],
"description": "Mappings between priority labels and minimum XP required to start tasks with those labels.",
"examples": [
[
{
"label": "Priority: 0",
"minimumXp": -2000
},
{
"label": "Priority: 5 (Emergency)",
"minimumXp": 3000
}
]
],
"type": "array",
"items": {
"type": "object",
"properties": {
"label": {
"description": "Issue label to match for experience gating.",
"examples": ["Priority: 1 (Normal)", "prio 1"],
"type": "string"
},
"minimumXp": {
"default": 0,
"description": "Minimum XP required to start a task with the associated label.",
"examples": [-2000, 0, 3000],
"type": "number"
}
},
"required": ["label"]
}
}
}
}
}
}
}
},
"homepage_url": "https://command-start-stop-develop.deno.dev"
}