From: W. Trevor King Date: Thu, 30 Jun 2016 04:13:58 +0000 (-0700) Subject: notmuch-report.json: Add sections for open, accepted, and rejected motions X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ea71a42a73201df218ebb184d7f4b385db315291;p=nmbug-oci.git notmuch-report.json: Add sections for open, accepted, and rejected motions So folks can find open votes at a glance and see the results of past votes. New tags are: * oci::motion for the initial proposal * oci::motion-accepted for the initial proposal once it has passed. I'm also using this for a "this proposal was accepted" message if one was sent to the list. * oci::motion-rejected for the initial proposal once it has been rejected. I'm also using this for a "this proposal was rejected" message if one was sent to the list. --- diff --git a/notmuch-report.json b/notmuch-report.json index 51b15d4..f61d083 100644 --- a/notmuch-report.json +++ b/notmuch-report.json @@ -49,6 +49,31 @@ "not tag:oci::obsolete" ], "title": "Charter changes" + }, + { + "comment": "Open motions requiring maintainer or TOB voting.", + "query": [ + "tag:oci::motion", + "not tag:oci::motion-accepted", + "not tag:oci::motion-rejected" + ], + "title": "Open motions" + }, + { + "comment": "Previous motions which were accepted.", + "query": [ + "tag:oci::motion", + "tag:oci::motion-accepted" + ], + "title": "Accepted motions" + }, + { + "comment": "Previous motions which were rejected.", + "query": [ + "tag:oci::motion", + "tag:oci::motion-rejected" + ], + "title": "Rejected motions" } ] }