You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi y'all!
My company is working on a marketing CSV/workflow to be able to pull whenever we start a new marketing project. Since a lot of the issues/sub-tasks will be repeating monthly, we have multiple issues/sub-tasks repeated for each month, i.e. November Email Content, December Email Content, etc.
Is there a way to automate it that if it is imported with a due date, the task will automatically move to the "To-Do" column when it is i.e. 7 days out from the due date?
It looks like you can do it on Trello via Due Date Commands but I couldn't seem to find the same thing for Jira. Please let me know! Thank you!
Hi Julia - Welcome to the Atlassian Community!
You can certainly do that with an Automation For Jira rule.
You would start with a Scheduled trigger to run each 1 day
Then base it on JQL - something like Project = ABC and duedate > startOfDay(7d)
Then add a New Action for Transition issue to move it to the To Do status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks John!!
I took your answer and modified it to the following,
Project = ABC AND due <= 7d AND status != Done
and
Project = ABC AND due >= startOfDay(7d) AND due <= startOfDay(30d) AND status != Done
To run automation rules to check the tickets daily, then flow on from this component to an email and priority changing process.
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.