Reporter |
![]() |
---|---|
Created | Feb 7, 2013 4:48:40 PM |
Updated | Jun 11, 2013 9:16:14 PM |
Resolved | Feb 14, 2013 3:03:14 PM |
Priority | Normal |
Type | Feature |
State | Fixed |
Assignee | Dmitry Krasilschikov (dima) |
Subsystem | Workflow |
Fix versions | Gentle |
Fixed in builds | No Fixed in build |
Affected versions | 4.1.2 |
Browser | Any Browser |
OS | Any OS |
Verified in build | Not verified |
Verified by | Nobody |
Reviewed by | No reviewed by |
Severity | Routine |
How to write workflow that everyday change states all issues with state "Resolved", "Rejected" or "Duplicate" to "Closed"?
My idea for that:
My idea for that:
schedule rule Close issues resolved more than 2 weeks ago daily at 14:00:00 [(issue.State = Resolved || issue.State = Rejected || issue.State = Duplicate) && ... ] { issue.State = Closed; }