File tree 1 file changed +8
-0
lines changed
maintner/maintnerd/maintapi 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -209,6 +209,14 @@ func tryWorkItem(
209
209
w .GoBranch = append (w .GoBranch , r .BranchName )
210
210
w .GoVersion = append (w .GoVersion , & apipb.MajorMinor {Major : r .Major , Minor : r .Minor })
211
211
}
212
+
213
+ // Test x/website with Go 1.16.15 in addition to the supportedReleases above.
214
+ // TODO(go.dev/issue/51800): Remove this once x/website deployment is updated.
215
+ if w .Project == "website" {
216
+ w .GoCommit = append (w .GoCommit , "7de0c90a1771146bcba5663fb257c52acffe6161" ) // go1.16.15 tag.
217
+ w .GoBranch = append (w .GoBranch , "release-branch.go1.16" )
218
+ w .GoVersion = append (w .GoVersion , & apipb.MajorMinor {Major : 1 , Minor : 16 })
219
+ }
212
220
} else {
213
221
// A branch that is neither internal-branch.goX.Y-suffix nor "master":
214
222
// maybe some custom branch like "dev.go2go".
You can’t perform that action at this time.
0 commit comments