You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/options.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,24 @@ The options are the same on specified above but in camelCase *e.g*:
36
36
}
37
37
```
38
38
39
+
###Group By
40
+
41
+
Via the configuration file you can have more complex grouping, using labels in a more creative way.
42
+
`gren` will use the keys of the given Object as titles and group all the issues that contain one or more of the labels in the value Array. A bit complex to understand? Just see the example:
43
+
44
+
```json
45
+
{
46
+
"groupBy": {
47
+
"Enhancements:": ["enhancement","internal"],
48
+
"Bug Fixes:": ["bug"]
49
+
}
50
+
}
51
+
```
52
+
53
+
In this case`gren` will group all the issues labeled with`enhancement` and`internal` under the title_"Enhancements: "_ and all the ones with`bug` under the title_"Bug Fixes: "_.