Hi everyone !
JIRA Board ( include columns & status ) can be copy ?
Ex. create a jira board as template,when I create a new project can use that
no need to repeat work
Hello,
You would need an add-on for it.
For example, you could use the Power Scripts add-on:
You could create a post function for the subtask moving into dev with a script like this:
autotransition(121, parent);
This script would move parent of the sub task to the dev status.
121 is the id of the transition leading to the dev status.
You could create a similar post function for the done status.
You can find more info about post functions here:
https://confluence.cprime.io/display/JJUPIN/Customizing+workflows
Thank you, Alexey. Is 121 a uniform ID for transitioning from Open to In Dev? If not, how can I find what is the transition ID?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can find ids of all transitions if you go to project settings -> workflows and open the required workflow:
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.