Skip to content

Commit 3bc3790

Browse files
committed
maintner/maintnerd, cmd/gerritbot, cmd/gitmirror: add golang/website to whitelist
The website now has its own subrepo with gerrit mirroring set up. Updates golang/go#29206 Change-Id: I6fb6fb62dfd50b48d2f78db2503641c521600ae7 Reviewed-on: https://go-review.googlesource.com/c/156217 Reviewed-by: Brad Fitzpatrick <[email protected]> Reviewed-by: Katie Hockman <[email protected]>
1 parent b67de00 commit 3bc3790

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

cmd/gerritbot/gerritbot.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ var gerritProjectWhitelist = map[string]bool{
221221
"tools": true,
222222
"tour": true,
223223
"vgo": true,
224+
"website": true,
224225
}
225226

226227
type cachedPullRequest struct {

cmd/gitmirror/gitmirror.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,8 @@ func shouldMirror(name string) bool {
303303
"time",
304304
"tools",
305305
"tour",
306-
"vgo":
306+
"vgo",
307+
"website":
307308
return true
308309
}
309310
// Else, see if it appears to be a subrepo:

maintner/maintnerd/maintnerd.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ var goGitHubProjects = []string{
335335
"golang/tools",
336336
"golang/tour",
337337
"golang/vgo",
338+
"golang/website",
338339
}
339340

340341
func setGoConfig() {

0 commit comments

Comments
 (0)