notmuch-report.json: Add sections for open, accepted, and rejected motions
authorW. Trevor King <wking@tremily.us>
Thu, 30 Jun 2016 04:13:58 +0000 (21:13 -0700)
committerW. Trevor King <wking@tremily.us>
Thu, 30 Jun 2016 04:13:58 +0000 (21:13 -0700)
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

index 51b15d4bf2a02991188a2c82105e7ba39d956d67..f61d083c65d7e37fd48c5ee76ab3e13d7e8c8729 100644 (file)
         "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"
     }
   ]
 }