Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi,
Our support team needs to have an alert 30 minutes before the execution date/time ("Transport Planned Date" customfield) in the issue in order to avoid some issues.
So I imagine to create a JQL to check all issues approach the execution date/time - 30 min and after send email to users.
And after create a script to send email.
I try to use scripted JQL functions:
issueFunction in dateCompare("","'Transport Planned Date'=Now()+.0.0625*d")
But it doesn't work ...
Thank you for your help
Cedric
Create a filter like
createdDate > -30m
Then create a subscription for this filter with a cron expression to execute every 30 mins. This will send out email for all tickets created in the last 30 mins for every 30 min interval
That would be my approach as well, but you'd have to be careful with the 30 minute delay. Say your cron execution happens 31 minutes before the planned time for issue A, the filter is not going to contain the issue, and the next will trigger at T minus one minute only. You would have to either use a shorter delay and risk getting spammed with the same issues, or making sure your planned time falls on exact times (e.g your subscription runs at each 00 and 30 minutes of each hour, and your planned times are alway at 59 or 29, to maximize the warning time)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Show up and give back by attending an Atlassian Community Event: we’ll donate $10 for every event attendee in March!
Join an Atlassian Community Event!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.