From ea71a42a73201df218ebb184d7f4b385db315291 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 29 Jun 2016 21:13:58 -0700 Subject: [PATCH] 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. --- notmuch-report.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) 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" } ] } -- 2.26.2