need script to inherit the parent status and create the subtask with the status of parent ?
You can make a Post Function in the workflow which can transition the status for you.
If you want it to work for "In Progress" Status, you should set conditions as:
issue.issueType.name == 'Sub-task' &&
issue.parentObject.getStatus().getSimpleStatus().getName() == "In Progress"
and then select the relevant action for that status, in the simple example it would be "Start Progress" action.
You can make a post function for each status you would like it to work for.
Any other values you would like to copy can be added in the "additional actions"
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.