I have same workflow for epics, stories and for bugs and within epic issue type I would like to jump over few states how to do this ?
Hi Jouni,
Do you mean that you want to use a different workflow for epics than for stories and bugs? You can do this by going to:
Jira settings-> Issues-> Workflows scheme
Then select your project and associate the epic issue type to the workflow you'd like for epics while keeping the current workflow linked to stories and bugs (maybe as a default workflow).
For that you may have to add a workflow and associate it to the issue type epic:
This document gives more details: https://confluence.atlassian.com/adminjiraserver071/configuring-workflow-schemes-802592719.html
Is this what you meant, or did I misunderstand your question?
Carlos
No, same workflow for all issue types.
I just want to use fast lane with epic meaning that I want to bypass review and test states with epic only.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you have transitions established from the origin status to the destination statuses you'd like to jump to for epics?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can also disable a transition by using a scripted condition with scriptrunner testing the issue type and the status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Will try if I get this working with JIRA automation (already acquired plugin as no scriptrunner etc available). Need to find correct triggers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
If you want to use one workflow but have additional statuses for the Epic issue type, then you would need a plugin for it.
For example you could use the Power Scripts add-on:
You could write a condition with a code like this:
if (issueType == "Epic") {
return true;
}
return false;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.