Only one task In progress per assignee
Is it possible to write workflow wich will move all the others task assined to the same person to Open state when the current one is moved to In progress?
Please sign in to leave a comment.
rule Move to Open when State.becomes({In Progress}) && loggedInUser == Assignee { var assignedIssues = loggedInUser.getIssues(Everything, "for: me"); for each myIssue in assignedIssues { if (myIssue != issue) { myIssue.State = {Open}; } } }Could you please explain what "for: me" does?
There are some issues which are closed but they are shown under the filter. Moreover they are shown for every user in YT.