Hi guys,
I'm running kanban with the new backlog on cloud.
I'm looking for a way to hide the epics that are currently in the backlog from the roadmap.
Our scope is changing frequently, so I would like to keep the old epics in the backlog, if they get re-prioritized, but only see the current scope in the roadmap.
Is this possible? (:
Best,
Stine
Hi Stephan,
We use the Script Runner plugin. There you get some JQL functions like: hasLinks(...) or hasLinksTypes(...).
But to do what you want to do we use a custom JQL function created with use of Script Runner.
There is a possibility to use Groovy and JIRA API to search for almost all combinations you would like to.
Read more here: https://jamieechlin.atlassian.net/wiki/display/GRV/Script+Runner
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Script Runner works fine.
But the Query ends after ~1985 Signs.
I use " ....OR issueFunction in linkedIssuesOf("status = 'im Test'", "ist Voraussetzung für") OR ..." to check some status in the linking issue.
I didn't find a Solultion for a Query with muliti select like:
"OR issueFunction in linkedIssuesOf("status in 'im Test' , closed", "ist Voraussetzung für")"
With a multiselect Query i didn't have the problem with the 1985 Signs :-)
I will check ~25 different Status (i know it is many Status, but they are in x different Workflows) in one Query.
Thanks Stephan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Create a filter with all your required status like
status in ('im Test', closed)
save this filter (e.g status-filter)
and use that filter in your original query
"OR issueFunction in linkedIssuesOf("filter = status-filter", "ist Voraussetzung für")"
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.