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