I can't find any sample how to achieve this using JIRA Misc Workflow Extensions. Could someone please provide some Groovy expression for this to work?
Hi Sven,
you actually don't need Groovy for that. You need to use the Transition Parent issue post-function in conjunction with the Subtask blocking Condition:
Hope this helps,
David
Hello
i want to move the parent issue when all subtasks are moved on transition.
so from To do to Reviewd, From reviewed to implemented, and so on.
Can you please write it down for me how to paste it in condition field?
{{Issuetype == sub-task | Status == Reviewed }} but how do i say ALL SUBTASKS???
Thanks
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi Sven
you can use post function (Transition Parent Issue Post-function) JMWE
select transition name/id
and tick on Conditional execution
def type = issue.getIssueType().getName();
def status = issue.status.name;
if(type == "Sub-task" && status == "Done"){
return true
}
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.
Hello, I can't find --Transition Parent issue post-function in my JIRA software.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mariami,
You need Jira Misc Workflow Extensions add-on in your instance to see the post-function in the list of post-functions.
Regards,
Radhika
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mariami,
Since you are on the Cloud, you might want to look into "Automation rules" to configure this. Else, you will need a third-party app like JMWE, Scriptrunner, etc (check Marketplace for other apps) to implement this use case.
Regards,
Radhika
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's a great news but I'm looking for in Automation rules for Jira Cloud and I didn't find the right way to solved this issue.
For now, I cannot get all subtasks and set the status change of my user story when the last subtask has moved. :(
Do you have an advice ?
Regards,
Nicolas
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.