I am looking to restructure a task management project in Jira.
Right now the way it is set up, the monthly newsletter is set as a task under the epic "Monthly Newsletter". As the assignee comes across topics that they want to add to the newsletter, they are entering it as a subtask for that month. Sometimes all of those topics make it in, and sometimes they do not. What I want to do is create an automation that will move the unfinished subtasks to the newly created new month task when the due date of previous month is past and it is not marked done.
Specific example:
For the month of February Task, the subtask "How to write a successful Jira Ticket" is not marked done. The due date was 02/17/23. I want that undone subtask to be automated to move to the month of March.
Is there a way to make this happen? Or is my head in the clouds?
Maybe it's better to change approach to the problem?
It's not a good idea to use sub-tasks and change it's parent. Maybe it's better to use tasks, and assign them with automation to another Epic?
So based on your answer, I am assuming that there is a way to do that. Do you have any examples?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sure, no problems. I'll give you base version, you'll need to adopt it to your requirements. Primary JQL, used for schedule trigger is:
issueType = Epic AND summary ~ "Monthly Newsletter" AND created < startOfMonth() AND created >= startOfMonth(-1)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Collista Lewingdon
Based on the information in this change request
https://jira.atlassian.com/browse/JSWCLOUD-22718
it should be possible to do this with Automation, but you would need to use the Send Web Request action to call the Jira REST API.
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.