We installed a free JQL query extension that allows a versionList function
Once installed you can query the current iteration using the below JQL
project = COLL and fixVersion in unreleasedVersions() and fixVersion in VersionList("Iteration ??")
To make the above work, I had to rename all future iterations to some thing line 'Pre Iteration....". That wasn't a big deal as we only wanted to make sure all historic and current iteration are named correctly.
To query all issues that don't have a story point one can use the below query and subscribe to daily email to get alerts
project = COLL and fixVersion in unreleasedVersions() and fixVersion in VersionList("Iteration ??") and type not in (Bug,Sub-task, "Support Ticket") and storyPoint = empty and (resolution in (Fixed,Completed) or status = Open)
No comments:
Post a Comment