Skip to main content

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 < -2d1d) OR (priority != "highest" AND updated < -2d))
                 AND updated > startofWeek(-1d))
              OR
                 (((priority = "highest" AND updated < -4d3d) andOR (priority != "highest" AND updated < startofweek(-4d))
                 AND updated < startofWeek(-1d))
             )
        )
   ) order by priority, updated DESC