Stream: fmg
Topic: Jira ballot questions
Josh Mandel (May 11 2021 at 21:44):
For the Jira Ballot process, is there an easy way to create filters for things like "all top-level votes for Bulk Data spec"? I've had to resort to JQL expressings that do a bunch of string matching on summary text, which is brittle. For example, https://jira.hl7.org/issues/?filter=14402:
summary ~ "BULKDATA R2" AND
summary !~ "No Vote" AND
summary !~ Abstain AND
issuetype not in subtaskIssueTypes()
Lloyd McKenzie (May 12 2021 at 02:52):
Do you want the votes or the issues? For the overall, just look at the linked items on the Ballot definitions. (It also has a nice summary table of the current count.) https://jira.hl7.org/browse/BALDEF-1979
(You'll need to click "show more links" to see them all.)
Josh Mandel (May 12 2021 at 13:16):
I'm just trying to figure out how to query this stuff. Sounds like text search may be the best bet
Josh Mandel (May 12 2021 at 13:18):
That summary page is cool though. How is it generated?
Dan Gottlieb (May 12 2021 at 15:06):
It looks like the summary page is driven by issue linking which seems to be queryable in jql. @Josh Mandel does this get closer to what you're looking for?
issue in linkedIssues(BALDEF-1979) AND "Vote - Ballot" in (Affirmative, Negative)
Josh Mandel (May 12 2021 at 16:14):
Perfect -- updated my filter to use this approach! Thanks Dan.
Last updated: Apr 12 2022 at 19:14 UTC