-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.json
69 lines (69 loc) · 1.97 KB
/
example.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
{
"data": {
"needs_work": [
{
"title": "Trying to fix the gadget widget",
"url": "https://github.com/example/prs/1",
}
],
"other_problems": [],
"waiting_for_review": [
{
"title": "Stop the crashing",
"url": "https://github.com/example/prs/2",
},
{
"title": "Cool new feature",
"url": "https://github.com/example/prs/3",
}
],
"devtest": [],
"ready_to_merge": [],
"workflow_problem": [],
"wip": []
},
"metadata": {
"display": {
"prod_crash": {
"priority": 0,
"symbol": "💥",
"title": "💥 Prod crash"
},
"other_problems": {
"priority": 10,
"symbol": "😟",
"title": "😟 Other problems"
},
"waiting_for_review": {
"priority": 10,
"symbol": "🕐",
"title": "🕐 Waiting for review"
},
"devtest": {
"priority": 10,
"symbol": "🧪",
"title": "🧪 Can be tested by developers"
},
"ready_to_merge": {
"priority": 10,
"symbol": "🎉",
"title": "🎉 Ready to merge"
},
"workflow_problem": {
"priority": 10,
"symbol": "🤨",
"title": "🤨 Workflow problem: should be 4EYE or ready for test"
},
"needs_work": {
"priority": 10,
"symbol": "👎",
"title": "👎 Needs work"
},
"wip": {
"priority": 11,
"symbol": "🚧",
"title": "🚧 Work in progress"
}
}
}
}