Sorry for the confusing title but I'm really stuck !
I need to report all BUGS linked to single EPIC e.g. OVERALL PRODUCTION TEST.
The only way I've found to do this is to use the EPICS Links Hierarchy, export to excel and one tab lists a single entry for each individual issue type (even if this issue is linked to multiple tests). I filter for BUGS. This is a pain to put together weekly for all EPICS so I was looking for a query that could provide the same info. Any ideas ?
Thanks Radek. In fact in the end I used linked issues with a filter :
issuefunction in linkedIssuesOf("filter = 'Production Report'") AND issuetype = Bug AND status != Done
Hi
I've been trying this out all morning and found the following solution :
issueFunction in linkedIssuesOf("project = XXX AND issuetype = 'TEST' AND 'Epic Link' = YYY-86 ") AND issuetype = Bug
So this lists all Bugs linked to all issue types TEST included in EPIC number 86.
HOWEVER !!! Now I've found that some users have linked bugs the EPIC. I'm not sure how to extend the above query to also include Bugs linked to the (same) EPIC ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I understood the last note correctly, to include issues directly linked to the Epic it might look similar to:
issueFunction in linkedIssuesOf('key = YYY-86') AND issueType = Bug
Connecting this to your current query via OR (so that it's inclusive):
(issueFunction in linkedIssuesOf('project = "XXX" AND issuetype = TEST AND "Epic Link" = YYY-86') OR issueFunction in linkedIssuesOf('key = YYY-86')) AND issueType = Bug
//fyi not tested - just theory
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.