Dashboard for organizing starred items
Keeping a list of changes being watched using the starring mechanism doesn't scale once there are more than a few items in the list. Use a few sub-queries to organize them, and filter out anything that has been closed or abandoned. Change-Id: I41aa224cb26868d1b033b4240db5b4cce0e2c759
This commit is contained in:
parent
b603e259d5
commit
c61a1c10d7
19
dashboards/starred.dash
Normal file
19
dashboards/starred.dash
Normal file
@ -0,0 +1,19 @@
|
||||
[dashboard]
|
||||
title = Starred Items
|
||||
description = Starred Items
|
||||
foreach = is:starred is:open
|
||||
|
||||
[section "You are a reviewer, but haven't voted in the current revision"]
|
||||
query = reviewer:self
|
||||
|
||||
[section "Passed Jenkins, No Negative Feedback"]
|
||||
query = NOT label:Code-Review>=2 NOT label:Code-Review<=-1 limit:50
|
||||
|
||||
[section "Needs final +2"]
|
||||
query = label:Code-Review>=2 limit:50
|
||||
|
||||
[section "Needs Feedback (Changes older than 5 days that have not been reviewed by anyone)"]
|
||||
query = NOT label:Code-Review<=2 age:5d
|
||||
|
||||
[section "Wayward Changes (Changes with no code review in the last 2days)"]
|
||||
query = NOT label:Code-Review<=2 age:2d
|
Loading…
Reference in New Issue
Block a user