https://bugzilla.wikimedia.org/show_bug.cgi?id=63533

--- Comment #1 from Alvaro <[email protected]> ---
Hi!

In OpenStack projec, the policy is that a submissions with -1 and not touched
in 1 week is moved automatically to ABANDONED status.

Something like that make sense in Wikimedia also?

A query to detect some of this submissions:

select count(changes.id) as total, issue_id, new_value, status, changed_on 
from changes, issues 
where changes.issue_id = issues.id  AND status = 'NEW' 
  and (new_value="-1" or new_value="-2") 
  and DATEDIFF(NOW(),changed_on) > 30 
group by issue_id 
having total=2;

A list of 143 submissions in this state are detected.

We can move all of them to ABANDONED state but maybe, it is better to do it in
Gerrit directly.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to