From 8adac88dfeba46e64dabe820cdf83899e135506d Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Wed, 2 Jun 2021 19:29:35 -0400 Subject: [PATCH] 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 Reviewed-by: Russ Cox --- repos/repos.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/repos/repos.go b/repos/repos.go index 51dd90a0..a8aa2c3a 100644 --- a/repos/repos.go +++ b/repos/repos.go @@ -60,7 +60,7 @@ func init() { x("arch") x("benchmarks", desc("benchmarks to measure Go as it is developed")) - x("blog", desc("blog.golang.org's implementation")) + x("blog", noDash) x("build", desc("build.golang.org's implementation")) x("crypto", desc("additional cryptography packages")) x("debug", desc("an experimental debugger for Go")) @@ -84,10 +84,10 @@ func init() { x("text", desc("packages for working with text")) x("time", desc("additional time packages")) x("tools", desc("godoc, goimports, gorename, and other tools")) - x("tour", noDash, desc("tour.golang.org's implementation")) + x("tour", noDash) x("vgo", noDash) x("vulndb", desc("the Go Vulnerability Database and packages for working with it")) - x("website") + x("website", desc("home of the golang.org and go.dev websites")) x("xerrors", noDash) add(&Repo{GoGerritProject: "gollvm"})