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
Hey all,
does anyone know how to set a rule in Jira that sends a slack message 2 days before the due date of an issue?
I know how to do the slack part but I don't know about the one that sets the due date - 2 days
Thank you!
Hi @Martina, you might add an automation rule triggered by schedule and define a JQL for the due period needed, e.g., like this:
The JQL will be like this
due > endOfDay(1) and due < startOfDay(3)
TimK.
Create automation rule on Scheduled basis and use the query duedate >= startOfDay(2) and duedate < startOfDay(3).
This query will return those issues whose due date is after 2 days, and then you can send slack message.
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.
@Martina, thanks for the feedback. I'm glad it helped.
TimK
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.