Hi Team
My Jira Cloud instance's default time zone is US-based, while my working hours follow India Standard Time (IST). We haven't changed the instance's time settings.
Hi @kalaimani
I am unclear if you are asking a question about creating / updating an automation rule or are making statements about what you have already implemented.
If you are asking about implementing a rule, please review the date / time functions, particularly for time zone management, to help: https://support.atlassian.com/cloud-automation/docs/jira-smart-values-date-and-time/
And if that does not help...please post an image of your complete automation rule, images of any relevant actions / conditions / branches, an image of the audit log details showing the rule execution, and explain what is not working as expected. Those will provide context for the community to offer ideas. Thanks!
Kind regards,
Bill
Hi Bill
My Jira instance is currently set to the US time zone, while I work in the India time zone. We usually receive issues based on the US time zone, but my requirement is to consider my time zone when I start work. If an issue is received before 12 PM IST, with the custom field selected English, then the Done ETA Date should be automatically set according to my requirements.
Smart Value : {{now.toDateTimeAtStartOfDay("Asia/Kolkata").plusHours(12).jiraDateTime}}
EstMid day : {{now.toDateTimeAtStartOfDay("US/Eastern").plusHours(12).jiraDateTime}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Date / time comparisons in rules can be challenging, particularly when time zones are involved. I recommend writing the values to the audit log before the comparisons to ensure they are what you expect to help with rule testing.
It appears you are comparing values in two different formats: jiraDate and jiraDateTime. Please try using one format to ensure proper comparisons.
Also, I recommend using {{now}} with convertToTimeZone() before trying to change the time values.
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.