I want to automatically move Tasks in ToDo to Doing if the Task Due date is 2 weeks from today.
I created this automation, but it's not working. Any thoughts why?
(I'm thinking I need to name my ToDo column Backlog and then move Tasks with Due dates 2 weeks from today to ToDo so I don't clutter my Doing list.)
Thanks in advance for any and all assistance.
Harry
Hi,
You can create a Scheduled trigger with Automation For Jira. Have it run daily (every one days).
Then use the JQL Condition for the due date query.
Then New Action for Transition issue to required status
Thanks @Piyush A (STR)
I'll try that. This is my first time writing a JQL Condition in Jira (or anywhere honestly).
Will Basic work or do I need to run Advanced?
Thanks,
Harry
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
advanced here -
Status in (To Do) and duedate >= now() AND duedate <= endOfDay("+14")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Harry Klein
Your rule's trigger is issue created so it will only run once.
What you need is scheduled trigger.
Ravi
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.
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.