I want to show dependencies in a Jira Dashboard or Confluence page.
My Filter for an initiative ticket type that is "implemented by" or "blocked by" another team ticket.
project = ABC AND statusCategory not in (Done) AND issueLinkType in ("is blocked by", "is implemented by")
Currently a Display Option is "Linked issues" in the table result but it shows everything (included "relates to") tickets. I only want to show the links by certain reason tickets.
Is this possible? Thank yoU!
Hi @Bea Tea try something like this.
(project = ABC AND statusCategory not in (Done)) AND issueLinkType in ("is blocked by") Or issueLinkType in ("is implemented by")
The way it's reading your jql it's trying to match everything.
Thanks @Craig Nodwell the filter is working as expected. I was trying to get more granular visibility for reporting purposes into ticket A is "blocked by 1234" and ticket B is implemented by 4567. Form what I read it does not sound like out of the box Jira/Confluence supports this display in a table unfortunatly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.