Visually mark cards as currently blocked (having linked unresolved dependencies)
Is there any way to display some kind of information that the card you're currently looking at is currently blocked? And by blocked, I mean that its issue is linked as dependent on another issue that is not yet resolved.
I am aware that I can open the card for more details, but this is incredibly bothersome when you have many cards on your board.
I've considered using workflows, but it seems too complex for Workflow Constructor, and with pure JavaScript, it's quite error-prone while doing by hand with changing statuses/tags, and I can sense some recursion problems with trying to iterate over linked issues to take off the blocking tag/status.
Please sign in to leave a comment.
Hello Tiritto ,
I suppose that the best way here is to indeed use workflows. You can use this rule as an example to avoid any recursion problems. The logic is “if the current issue is not resolved and has dependant issues, add a BLOCKED tag to dependant issues”. The second workflow would be “if the current issue becomes resolved and has dependant issues, remove the BLOCKED tag from the linked issues”.
Okay, I've made a workflow that more or less does what I would expect. There are still some holes in it (like when trying to unresolve already resolved issue), but for the most part it does the job.
on-blocking-issue-change
on-blocked-issue-change
on-resolving-blocked
What happens when you're trying to do that?