Separated notmuch::needs-review and notmuch::moreinfo queries
authorTomi Ollila <tomi.ollila@iki.fi>
Fri, 19 Oct 2012 04:43:25 +0000 (07:43 +0300)
committerTomi Ollila <tomi.ollila@iki.fi>
Fri, 19 Oct 2012 04:43:25 +0000 (07:43 +0300)
The 'review' queue listed patches marked with both notmuch::needs-review
and notmuch::moreinfo tags. Now those are separated to separate queues
so that patch author can concentrate their moreinfo and rest
on needs-review patches.

status-config.json

index af0f84be28852c0f1c1dc734c3ea1e4ebcc28508..67edbdb52567e410b2d7b673ee5758db30dd377e 100644 (file)
            "title": "Maybe Ready (vim)"
        },
        {
-           "comment": "These patches are under review, or waiting for feedback.",
+           "comment": "These patches are waiting for feedback (from patch author).",
            "query": [
                "tag:notmuch::patch",
                "not tag:notmuch::pushed",
                "not tag:notmuch::obsolete",
                "not tag:notmuch::stale",
                "not tag:notmuch::wontfix",
-               "(tag:notmuch::moreinfo or tag:notmuch::needs-review)"
+               "tag:notmuch::moreinfo"
+           ],
+           "title": "Moreinfo"
+       },
+       {
+           "comment": "These patches are under review.",
+           "query": [
+               "tag:notmuch::patch",
+               "not tag:notmuch::pushed",
+               "not tag:notmuch::obsolete",
+               "not tag:notmuch::stale",
+               "not tag:notmuch::wontfix",
+               "tag:notmuch::needs-review"
            ],
            "title": "Review"
        }