-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorders.json
53 lines (53 loc) · 1.34 KB
/
orders.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
{
"orders": [
{
"board": null,
"create_boards": [
{
"name": "test-board",
"permission_level": "private",
"lists": ["TODO", "Doing", "Done"]
},
{
"name": "test-board-2",
"permission_level": "private",
"lists": ["TODO", "Doing", "Done"]
}
]
},
{
"board": "test-board",
"create_cards": [
{
"name": "Test card 1",
"list": "Doing",
"labels": ["Important"]
},
{
"name": "Test card 2",
"list": "TODO"
}
],
"create_labels": [
{
"name": "Important",
"color": "red"
},
{
"name": "Low",
"color": "yellow"
}
]
},
{
"board": "test-board-2",
"prefix": "TB2",
"create_labels": [],
"create_cards": [
{
"name": "Test card 3"
}
]
}
]
}