I have been looking into a way to prevent the submission of a change if the Verified vote is older than 2 days.
I added the following submit-requirement that sort of works:
[submit-requirement "Verified Freshness"]
description = Verified +1 on current patch set must be less than 2 days old.
submittableIf = label:Verified=MAX AND -age:2d
With the addition of the submit-requirement, a change with with a preexisting Verified +1 vote and/or a Code-Review +2 vote can not be submitted if the Verified vote is older than 2 days. However, if a person gives a new Code-Review +2, the submit-requirement is ignored.
Is there a way to make the age of the Verified vote take precedence?