notmuch/contrib/nmbug/status-config.json
David Bremner 3e5fb88f11 contrib/nmbug: add nmbug-status script
This is (almost) the same script as has been used for
http://nmbug.tethera.net/status for a while now. The only change is
that the configuration is not hardcoded anymore. By default the config
is fetched from a special branch in the nmbug repo that contains only
config info. The idea is that push access to this branch can be
restricted a bit more than the tags, since it will change the
appearence of the web pages.
2012-07-10 15:43:32 -06:00

65 lines
1.9 KiB
JSON

{
"views": [
{
"comment": "Unresolved bugs (or just need tag updating).",
"query": [
"tag:notmuch::bug",
"not tag:notmuch::fixed",
"not tag:notmuch::wontfix"
],
"title": "Bugs"
},
{
"comment": "These patches are under consideration for pushing.",
"query": [
"tag:notmuch::patch and not tag:notmuch::pushed",
"not tag:notmuch::obsolete and not tag:notmuch::wip",
"not tag:notmuch::stale and not tag:notmuch::contrib",
"not tag:notmuch::moreinfo",
"not tag:notmuch::python",
"not tag:notmuch::vim",
"not tag:notmuch::wontfix",
"not tag:notmuch::needs-review"
],
"title": "Maybe Ready (Core and Emacs)"
},
{
"comment": "These python related patches might be ready to push, or they might just need updated tags.",
"query": [
"tag:notmuch::patch and not tag:notmuch::pushed",
"not tag:notmuch::obsolete and not tag:notmuch::wip",
"not tag:notmuch::stale and not tag:notmuch::contrib",
"not tag:notmuch::moreinfo",
"not tag:notmuch::wontfix",
" tag:notmuch::python",
"not tag:notmuch::needs-review"
],
"title": "Maybe Ready (Python)"
},
{
"comment": "These vim related patches might be ready to push, or they might just need updated tags.",
"query": [
"tag:notmuch::patch and not tag:notmuch::pushed",
"not tag:notmuch::obsolete and not tag:notmuch::wip",
"not tag:notmuch::stale and not tag:notmuch::contrib",
"not tag:notmuch::moreinfo",
"not tag:notmuch::wontfix",
"tag:notmuch::vim",
"not tag:notmuch::needs-review"
],
"title": "Maybe Ready (vim)"
},
{
"comment": "These patches are under review, or waiting for feedback.",
"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)"
],
"title": "Review"
}
]
}