I have a work type called Blog that after it has been Done (or on our board Published) for 6 months, I'd like --
1. The summary to update to: [6M Review] {{issue.summary}}
2. The status to update to: Coming Up
3. The due date to update: 30d after this trigger
4. Re-assign to: xxx
I am trying to use Rovo to build this automation but I can't tell if it's working because I don't technically have any blogs posts that have been done for 6 months. When I try to update it 1M to test, I don't get any results.. so I'm assuming it's not working.
To test it, instead of updating the task, I want the automation to even just send me the results of the query in my email, so that I could just review what tasks need to be updated and just manually do it (FOR NOW, would prefer the automation but I don't trust it yet to update my tasks).
Help!
Hi. Maybe this option could help you.
I don't have any tasks that were created 6 months ago, so I added a custom field with type "Date Time Picker" to simulate this. In my case field called "Date of created".
So we have ticket PRG-1 and a summary "Help task 1". This ticket was created Sep 03, 2025, 2:00 AM.
1. In a trigger rule, choose "When: Scheduled Every day at 12:30 AM". That means that the rule will be triggered every day at 12:30 a.m. You could choose another time.
2. Choose "FOR EACH: Add a branch" –> "Branch rule / related work items" –> "Type of related work items = JQL" (project = "<Name>" AND issuetype = Blog AND Created <= 6M)
3. For this step, I add a new custom field "Old summary". Copy current summary in this field. In the future, we will use this date to created new issue's name.
4. Re-fetch date in task. This action updates and saves ticket changes.
5. On the next step, we choose Transition.
Transition – Coming Up
6. Change issue Summary - [6M Review]{{issue.summary}}
Set up Due date - {{now.plusDays(30)}}
7. Choose Assignee
8. To verify, we run the rule manually.
9. Check result
Hi @rworkman
Did rovo create an automation rule? If so can you post a screenshot of it?
The route I would take (may not be the best route) would be when a Blog transitions to "Published" that you update a custom date field to current date + 6 months and then create a scheduled automation rule that runs daily searching for Blogs with that custom date field = current day and if so transition it to "Coming Up" and then edit the work item for the due date and summary edits you mentioned. Just keep in mind if you do [6M Review] {{issue.summary}} by the next run it will be [6M Review] [6M Review] {{issue.summary}} and so on.
with that setup you can do some test cases by manually setting that custom date field and running the automation rule.
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.