Automation Filters
project = MOON
AND (
(status = "Parked" AND updated <= -4w)
OR ((status = "Pending" OR status = "Triage") AND updated <= -1w)
OR (
status = "In Progress"
AND (
(((priority = "highest" AND updated < -1d) OR (priority != "highest" AND updated < -2d))
AND updated > startofWeek(-1d))
OR
(((priority = "highest" AND updated < -3d) OR (priority != "highest" AND updated < -4d))
AND updated < startofWeek(-1d))
)
)
) order by priority, updated DESC