Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagesql
"SLA Percent" >=100 and status != closed and assignee in membersOf("jira-users")
-- Use the SLA Percent custom field. If the 100 % or more of the time has been spent - the issue is likely to be overdue.
-- The assignee must be member of the group "jira-users". Replace it with a relevant group, e.g. "my-team"


Code Block
languagesql
issue.property[slatimer].percentslaPercent > 90 and status != closed and assignee in membersOf("jira-users")
-- Use the SLA Percent custom field. If the 100 % or more of the time has been spent - the issue is likely to be overdue.
-- The assignee must be member of the group "jira-users". Replace it with a relevant group, e.g. "my-team"

...