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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I want to send a message to the channel once a task has been in a column for more than 3 days. I know there is a field called [Chart] Time In Status that is displayed in the card, but how can I access that field to make a comparison in my condition?
The condition I want is if [Chart]Time in Status > 3
Then send message to slack and message to assignee.
Thank you for the help
Jorge
Hi Jorge,
in jql you can check whether a status has changed.
For your case you probably want something like this:
project = "your project"
AND NOT status CHANGED AFTER startOfDay(-3d)
AND created < startOfDay(-3d)
That gives you all issues which were not moved to another status within the last 3 days. You also need to exclude all issues that were created during the last three days since they haven't moved either.
Hope this helps.
Cheers,
Holger
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.