File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ func (s *server) updateReviewsData() {
117
117
if strings .Contains (cl .Commit .Msg , "DO NOT REVIEW" ) || strings .Contains (cl .Commit .Msg , "DO NOT SUBMIT" ) {
118
118
return nil
119
119
}
120
- if cl .Meta .Hashtags ().Contains ("wait-author" ) {
120
+ tags := cl .Meta .Hashtags ()
121
+ if tags .Contains ("wait-author" ) || tags .Contains ("wait-release" ) {
121
122
return nil
122
123
}
123
124
c := & change {GerritCL : cl }
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ header {
54
54
<header>
55
55
<strong>{{.TotalChanges}} open changes</strong>
56
56
<div class="header-subtitle">
57
- Excluding those with hashtag "wait-author" or description containing “DO NOT REVIEW” or “DO NOT SUBMIT”
57
+ Excluding those with hashtags "wait-author", "wait-release", or description with “DO NOT REVIEW” or “DO NOT SUBMIT”
58
58
</div>
59
59
<div class="header-subtitle">
60
60
<a href="https://go.googlesource.com/build/+/master/devapp/reviews.go">Source code</a>
You can’t perform that action at this time.
0 commit comments