We have a filter to graph the bugs in the current Sprint.
project = FS AND issuetype in (Bug) AND Sprint in openSprints() ORDER BY created ASC
This is includes older bugs we pull into the Sprint and bugs created during the Sprint. Older bugs are viewed as "Planned Work", but I am trying to illustrate the increased workload coming from new bugs. I would like to constrain it to bugs created during the current Sprint. While we don't point them, they do add to the overall Sprint workload.
Hi @Bud Herz ,
project = FS AND issuetype in (Bug) AND Sprint in openSprints() and Sprint not in closedSprints()
This should get only the bugs added in the current active sprint, not from the old sprint.
Hope this helps.
-Kevin.
Hi @Bud Herz
There is an edge case this query will not find:
Those defects were not added after sprint start, and so are not scope change.
When you need to specifically see defects added to the scope of the sprint *after* it started, please consider either:
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Bill Sheboy those are great points, but in our workflow any new bug is handled during the current sprint (To Do, Doing, Done).
The bugs won't (potentially) move to the Backlog until the end of the sprint. That would move them off the list I'm trying to create (bugs created in current sprint).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.