wuffle 0.70.1 → 0.72.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.
@@ -33,6 +33,9 @@
33
33
  *
34
34
  * You may define a default filter to apply to the board if
35
35
  * there is no user-defined search query.
36
+ *
37
+ * You may also configure whether bots are counted as
38
+ * legitimate reviewers (for both review and approval).
36
39
  */
37
40
  export default {
38
41
 
@@ -48,5 +51,7 @@ export default {
48
51
  { name: 'Done', label: null, closed: true }
49
52
  ],
50
53
 
51
- defaultFilter: '!repo:"some/ignored-repository"'
54
+ defaultFilter: '!repo:"some/ignored-repository"',
55
+
56
+ treatBotsAsReviewers: false
52
57
  };