how to query for issues have was blocked by a linked ticket in another project

Herman Xiao May 11, 2018

I have two projects A and B, issueA1 is blocked by issueB2. I would like to be notified once the blocking issueB2 is resolved in Project B. How can I construct a query in Project A?

1 answer

0 votes
Mesut Yilmazyildirim
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 21, 2018

You can create a filter and subscribe to it.

JQL will be like; 

project = test and  issueFunction in hasLinks("blocks") and status = Done

Suggest an answer

Log in or Sign up to answer