@nanobpm/nano-workforce 0.88.1 → 0.90.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/app/github.test.ts +94 -1
- package/app/github.ts +150 -0
- package/app/lineage.test.ts +25 -5
- package/app/lineage.ts +60 -5
- package/app/migration042.test.ts +51 -0
- package/app/migration043.test.ts +62 -0
- package/app/plan.ts +11 -0
- package/app/promotion.test.ts +56 -0
- package/app/promotion.ts +84 -0
- package/app/promotionPoll.test.ts +255 -0
- package/app/service.ts +89 -0
- package/db/migrations/042_plan_promotion.sql +31 -0
- package/db/migrations/043_pr_epic_phase.sql +36 -0
- package/package.json +1 -1
- package/pages/epic-detail.page.json +2 -0
- package/pages/epic.page.json +1 -0
- package/pages/home.page.json +53 -0
package/pages/home.page.json
CHANGED
|
@@ -257,9 +257,62 @@
|
|
|
257
257
|
{
|
|
258
258
|
"field": "outcome",
|
|
259
259
|
"label": "Outcome"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"field": "epic_phase_label",
|
|
263
|
+
"label": "Epic phase"
|
|
260
264
|
}
|
|
261
265
|
],
|
|
262
266
|
"children": [
|
|
267
|
+
{
|
|
268
|
+
"title": "Epic",
|
|
269
|
+
"source": "app",
|
|
270
|
+
"table": "plans",
|
|
271
|
+
"parentField": "root_request_key",
|
|
272
|
+
"childField": "plan_key",
|
|
273
|
+
"columns": [
|
|
274
|
+
{
|
|
275
|
+
"field": "title",
|
|
276
|
+
"header": "Epic root",
|
|
277
|
+
"truncate": true,
|
|
278
|
+
"linkField": "issue_url"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"field": "epic_phase",
|
|
282
|
+
"header": "Phase"
|
|
283
|
+
}
|
|
284
|
+
]
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"title": "Epic slices",
|
|
288
|
+
"source": "app",
|
|
289
|
+
"table": "plan_tasks",
|
|
290
|
+
"parentField": "root_request_key",
|
|
291
|
+
"childField": "plan_key",
|
|
292
|
+
"orderBy": {
|
|
293
|
+
"field": "task_index",
|
|
294
|
+
"dir": "asc"
|
|
295
|
+
},
|
|
296
|
+
"columns": [
|
|
297
|
+
{
|
|
298
|
+
"field": "task_id",
|
|
299
|
+
"header": "Slice"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"field": "title",
|
|
303
|
+
"header": "Title",
|
|
304
|
+
"truncate": true
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"field": "status",
|
|
308
|
+
"header": "Status"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"field": "pr_key",
|
|
312
|
+
"header": "PR"
|
|
313
|
+
}
|
|
314
|
+
]
|
|
315
|
+
},
|
|
263
316
|
{
|
|
264
317
|
"title": "Rounds",
|
|
265
318
|
"source": "app",
|