Hello, I'm trying to make Automation to delete all email requests that are duplicates of existing one.
I'm using query
reporter = '{{issue.reporter.emailAddress}}' AND summary ~ "({{issue.summary}})" AND created != "{{issue.created}}"
My issue is with part "created != "{{issue.created}}".
JIRA is getting created time in format yyyy-MM-ddTHH:mm:ss+0000, but JIRA itself does not support this format to compare.
Is there any way to change this format to work with?
Thank you!
Hi @Jakub Končal ,
You can try created != "{{issue.created.jiraDate}}"
Or for more date format, you can read here: https://support.atlassian.com/cloud-automation/docs/jira-smart-values-date-and-time/
Hope this helps!
Thank you! I'll try it and keep posted if it works! 😊
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.