Is there any way we can force a task on JIRA not to close if the sub-task is not closed?
Hi Tobias,
You can use JJupin for this kind of task, here is a demo snippet(run it from SIL Gadget):
// let's get some issues via JQL
string [] issueKeys = selectIssues("project = ABC");
for (string key in issueKeys) {
#{key.Security Level} = "Internal";
}
You can do a lot of things with JJupin and its Simple Issue Language(SIL), this is just an easy task. Give it a try :)
Best regards,
Silviu
Interesting, I didn't think that would work because it needs to bypass the "do not edit me" flag on the closed status.
You can do it without any scripting though - edit the workflow, and remove the "do not edit" flag from the status. Or add a transition from "closed" to "closed" and make it go through a screen that includes "security level" (restrict the transition to admins or appropriate people) or even just sets it in a post-function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Will this cause the change to be logged in the issue history?
Will this cause notification mails to be sent out?
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.