I can do a search that returns the tickets that have dependencies. What I want to know is if the dependencies are tickets for different teams. For example:
Project Acme has 3 teams, X, Y, and Z. There are stories for team X that have dependencies. Can I do a search that tells me if any of team X's stories are dependent on teams Y or Z?
Something like:
project = Acme AND Team = X AND issueLinkType in ("depends on", "is depended on by") AND ... _the issues depended on are in Team Y or Z_
Or can I at least return the list of tickets that are the dependencies? If I had the list of tickets that are the dependencies, then I can look at the Team value in a column and spot the ones for other teams.
OK, I found that the column is available, called "linked issues" in JQL and with a heading of "Links" in the table.
But I'm still very interested in the next step -- getting the Team information for those links.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.