My current situation is I have a custom workflow which include many statuses.
For each Jira issue, has some sub-tasks.
I want a validation mechanism, which can prevent the Issue going to the next statuses untill some certain custom fields have been validated. But the custom fields are not belong to Jira issue, they are belong to sub-tasks.
e.g. 1. There are statuses: A, B, C, D, etc for the workflow;
2. There is an issue X who has Y and Z as sub-task;
3. Sub-task Y has a and b as custom fields;
4. Sub-task Z has c and d as custom fields;
5. The issue X won't go from status A to status B until custom fields a, b, c and d are validated.
Anyone knows are there any good plugins or method I can do like this.
NB: I know there is a plugin called Jira Suite plugin which is powerful, I can do some validation on transition, but the fields validation are only for issues, not include sub-task custom fields.
Thanks.
Start with marvelours ScriptRunner plugin from Jamie Echlin, and prototype your ScriptValidator in Groovy.
Something like
import com.opensymphony.workflow.InvalidInputException if (!issue.subTaskObjects*.summary.contains("Specific subtask")) { invalidInputException = new InvalidInputException("No specific subtask!") }
No, there's certainly nothing in the core of Jira which does this. (Barring the "block transition if any sub-tasks are in selected status").
I'm not aware of a plugin which will scan sub-task information either. I think you'll have to write something. I'd actually start with the code for the "subtask blocking condition" as that contains a good chunk of what you need, and all you'd need to do is modify it to work off custom fields instead of the status of the sub-tasks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think, as of now there is no way to achieve 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.