Hi,
Is it possible to write a script which generates a mail at the beginning of every week and has details on the tickets resolved by an engineer over last week.
Any inputs will be helpful.
Thanks
Hi SR, welcome to the community!
These should be the steps you need...
This will send you an email each week with the data.
At the top of the results there is a column drop down that allows you to add/remove columns.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok thanks I could find that.
But lets say I want to get an email everyday around 9.30 PM with tickets resolved on that particular day from 9am - 9PM (IST) , how should i formulate the JQL query.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@SR ,
You can use startofDay and endofDay functions with a parameter. Start of day and end of day are 24:00:00 am, and 00:00:00, respectively.
I don't know if there is a way to account for the IST time zone except to figure out the difference between your time zone and IST and then add or subtract hours. If you are in the same timezone then the JQL would look like this:
resolved > startOfDay(9h) AND resolved < endOfDay(-3h) ORDER BY resolved ASC
Adding 9h to the start makes it 9:00am and subtracting 3 hours from the end makes it 9:00 pm.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is the documentation from Atlassain: https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/#Advancedsearchingfunctionsreference-startOfDay
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.