Like the title says. I've tried a few different things and right now I'm trapped looking at this:
issueFunction in parentsOf("resolution is not EMPTY")
As you can imagine, it is not pulling what I want.
I have access to Script Runner.
Any help would be massively appreciated!
This should work:
issueFunction in epicsOf("resolution is not EMPTY")
See more information on this function on Adaptavist's help site: https://docs.adaptavist.com/sr4js/latest/features/jql-functions/included-jql-functions/issue-links#epicsOf
Ste
Hello @Sofie Palacios
I am in DC and this is how I look for Epics where *all* stories are done:
issuefunction in epicsOf('issueFunction in issuesInEpics("project = XXXX") and status = Done')
and not
issuefunction in epicsOf('issueFunction in issuesInEpics("project = XXXX") and status != Done')
Hope it works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
where XXXX is the project where epics live.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sofie Palacios , it may be different in DC but in Cloud I can use the following...
issueFunction in epicsOf("resolution = unresolved")
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.