Skip to content

Commit 8adac88

Browse files
committed
repos: make blog and tour repos less prominent
The x/blog and x/tour repositories have been merged into x/website. Stop displaying x/blog on the build dashboard, especially because there are 0 Go packages in it, which the build dashboard shows in red. (Keep TryBots enabled in case a CL is sent with new Go code.) Remove their descriptions since neither is worth including in the list at https://golang.org/pkg/#subrepo. Show x/website instead. Change-Id: Idc2bcec17b6bed9929c3a37f2c45ae524559d37f Reviewed-on: https://go-review.googlesource.com/c/build/+/324609 Trust: Dmitri Shuralyov <[email protected]> Reviewed-by: Russ Cox <[email protected]>
1 parent 10d5d32 commit 8adac88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

repos/repos.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func init() {
6060

6161
x("arch")
6262
x("benchmarks", desc("benchmarks to measure Go as it is developed"))
63-
x("blog", desc("blog.golang.org's implementation"))
63+
x("blog", noDash)
6464
x("build", desc("build.golang.org's implementation"))
6565
x("crypto", desc("additional cryptography packages"))
6666
x("debug", desc("an experimental debugger for Go"))
@@ -84,10 +84,10 @@ func init() {
8484
x("text", desc("packages for working with text"))
8585
x("time", desc("additional time packages"))
8686
x("tools", desc("godoc, goimports, gorename, and other tools"))
87-
x("tour", noDash, desc("tour.golang.org's implementation"))
87+
x("tour", noDash)
8888
x("vgo", noDash)
8989
x("vulndb", desc("the Go Vulnerability Database and packages for working with it"))
90-
x("website")
90+
x("website", desc("home of the golang.org and go.dev websites"))
9191
x("xerrors", noDash)
9292

9393
add(&Repo{GoGerritProject: "gollvm"})

0 commit comments

Comments
 (0)