Hi,
I want to get a JQL when status is in progress then all tasks appear on the kanban board.
Thanks
Swarna
Need to have some JQLfunctions which is provided by script runner
eg:
Filter1
project = xxx and issuetype = epic and status = "in progress"
Filter2:
Project = xx and issuetype=task and isuefunction in issuesInEpic("filter = filter1")
Guess this should work
issuesInEpic retrieves the issues that are associated to a epic based on sub query..
Cheers
I have tried issueFunction in issuesInEpics("filter= Epic-In Development") but getting error.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try with the available scripted JQL functions(available in your jira) which will retrieve issues linked to a epic
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@kavi shree, It works but I want to get the epic also. I am getting all tasks when epic is in progress.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try with some recursive functionality.
Check out the below to get an idea
Cheers,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
I am not sure what you want to do. But the JQL query would be
status = "In Progress"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I want to have a JQL filter to be used on a kanban board when epic will be in progress, then its tasks will appear on the kanban . If epic is status "To do", then the board should be empty.
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.