You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I am looking for a way to get a dependency board (probably in portfolio) up and running.
The filter I want to use should sort out only Cross project dependencies.
Something like "All issues with link type "blocks" OR "is blocked by" AND linked issue is in another project"
No problem in getting all linked issues with certain link types. The problem is I only want issues with cross project links to show.
(Reason being we have a One Scrum Team = One Jira Project setup)
How are you?
Do you have success on your doubt? ("I would like to have from ALL projects to ALL")
Could you share with us?
Regards,
Jair
Hi Fredrik,
You can achieve this by using JQL Search Extension plugin , you can use the query linkedByIssueProject = JQL and linkType =
"is blocked by"
please refer to the documents it contains examples and other necessary information related to the usage of plugin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Thanks!
I was hoping to find a way to do it without another plugin but I guess it might not be possible. I will try it out if I can get them to accept a new plugin :)
Regards
Fredrik
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Fredrik Janson ,
Hope this JQL might for you, this JQL will only work if you have a script runner add-on installed in your instance. Kindly check this:
issueLinkType in (blocks, "is blocked by") and issuekey in hasLinkToProject("project names")
Cheers
Mone Dileep Kumar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi thanks,
What I am after is a board showing all issues from all projects with a "blocks" or is "blocked by" link towards another project. Your example needs to be set for each project, right?
Regards
Fredrik
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Fredrik Janson ,
Yes, as of now that is related to one project, if you are looking for all projects then you may need to mention all project names separated by comma (,) in the hasLinkToProject place. For example:
issueLinkType in (blocks, "is blocked by") and issuekey in hasLinkToProject("x", "y", "z")
Here x,y,z are the project keys.
Cheers
Mone Dileep Kumar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well yes but I would like to have from ALL projects to ALL projects (except between their own). Sorry if my original post was to fuzzy.
Ex. let use projects A, B & C
If I have links between issues in the projects like:
A->A
A->B
B->C
C->A
C->C
I would like to show:
A->B
B->C
C->A
and exclude:
A->A
C->C
Regards
Fredrik
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have script runner installed in my instance but hasLinkToProject("project names") is not working for me.
I think it is not related to script runner plug in, Could you please check again and let me know?
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.