How is it possible to restrict card movements to go along a defined workflow. For example in a work flow that usually progresses from 'Open' to In-Progress to Completed to Closed in sequence I would like to prevent the leap directly from Open to Completed. There is a power-up called 'Workflows' but this is labelled as not in compliance with Atlassian's privacy policy.
Are there any better alternatives?
Hi,
You can create a rule like this which avoids to move a card from open to completed list
when a card in list "open" is added to list "completed", move the card to the top of list "{triggercardpreviouslistname}"
And duplicate the rule for each unauthorised card movement
By using operator not in, you can do this just with 2 rules
when a card not in list "in progress" is added to list "completed", move the card to the top of list "{triggercardpreviouslistname}"
when a card not in list "completed" is added to list "closed", move the card to the top of list "{triggercardpreviouslistname}"
Thanks @Ludo - took a bit of digging to find the advanced button to switch on the rest of the options and then a few rules later and it does indeed work. But... I am surprised that there is not a more universal/intuitive/concise way to do this.
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.
Thank you for the link - I had seen that, and read it but perhaps my short attention span times out before I get to the relevant section :)
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.