Hello.
I have a zap which triggers the following JQL query:
`project = PROJECT AND status = “In Progress” AND issuetype in standardIssueTypes() AND (component = "First component" AND component = "Second component") AND status changed before -7d AND NOT status changed after -7d`
It pulls all issues which are in “In Progress” status for more than 7 days.
The problem: when some issue was in another status for more than 7 days, and was just transitioned to “In Progress”, zap catches this issue and sends a notification. But obviously it shouldn’t. Everything works fine when I run the query manually in Jira, I don’t see such issues.
Any ideas what could be the reason of such behaviour? I was thinking about time zone differences, something like that, but I’m not sure. Thanks in advance.