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
Certain administrative tasks must be done on a weekly basis. For these tasks I am trying to create a automation that creates a duplicate issue assigned to the same user for the next Friday.
I am Cloning the issue based on the assigned component (Friday Recurring), but I am running into several issues.
Hi @Jeremy D
Perhaps instead of cloning, you use an automation issue to create the cloned value. Then copy pertinent information from the source to the new issue. Here's how I would tackle your challenges:
{{now.withNextDayOfWeek("FRI").plusDays(7)}}
{{issue.summary.remove("CLONE")}}
I should add that #2 becomes irrelevant if you use automation to spawn the new issue instead of adjusting it after the fact.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This works except if I complete the task on Friday. Could I do the add days first (say 4 days) and then the Friday argument?
{{now.plusDays(4).withNextDayofWeek("FRI")}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ahh - So if it occurs on Friday, you want it to be next Friday? In that case you'll want something a little more complex. The easiest way would be to add an IF condition to your flow. Here's an example I threw together:
For copy/paste purposes, here's what I used for the IF condition:
{{now.fullDate.left(3)}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, @Jeremy D ! As an alternative, you can use the Business Process Manager add-on developed by my team.
You can transform your tasks into Templates and set a schedule for each repetitive process. So, administrative tasks will be done on a weekly basis or as you wish.
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.