-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathwuffle.config.example.js
45 lines (42 loc) · 1.35 KB
/
wuffle.config.example.js
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
/**
* This defines board specific configuration.
*
* ### Name
*
* The name of your board, displayed in the board header.
*
*
* ### Columns
*
* Valid fields for columns are
*
* * name - unique name
* * label - label, if present on a GitHub issue column will be set
* * closed - if the column issues must be closed
* * sorting - true if column cards should be sorted
* incrementally based on links
* * fifo - true to turn the default column ordering from
* last in first out to first in first out
* * states - a list of board states to map to this column
*
* The default column is the column that holds open issues without
* any label constraints (Inbox in the example below).
*
*
* ### Search Config
*
* You may define a default filter to apply to the board if
* there is no user-defined search query.
*/
export default {
name: 'My Wuffle Board',
columns: [
{ name: 'Inbox', label: null },
{ name: 'Backlog', label: 'backlog', sorting: true },
{ name: 'Ready', label: 'ready', sorting: true, fifo: true },
{ name: 'In Progress', label: 'in progress', sorting: true, fifo: true },
{ name: 'Needs Review', label: 'needs review', sorting: true, fifo: true },
{ name: 'Done', label: null, closed: true }
],
defaultFilter: '!repo:"some/ignored-repository"'
};