Skip to content

Commit a775ecf

Browse files
dmitshurgopherbot
authored andcommitted
internal/relui: add a solo Go 1.19 next minor workflow
In general, try to reuse as much existing code as possible to do this one off-cycle release. Pretending that it's a KindPrevMinor release kind (rather than creating a new KindPrevPrevMinor) should do that. My plan is to use it up to the point of "Wait for Coordinator Approval" to pre-build, and on the target release day, up to "Wait to Announce". At that point, we can either let it send the rare but supported "solo minor release" communication, or, perhaps better, instead rely on the dual workflow for the Go 1.21.1 and Go 1.20.8 minor releases to take care of the announcement. That is, we can add a brief sentence to the announcement email and likely not worry too much about the tweet. For golang/go#62076. Change-Id: Ie0783da9d4451a91311d99ccccf2689268ef39cf Reviewed-on: https://go-review.googlesource.com/c/build/+/520236 Run-TryBot: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> Reviewed-by: Heschi Kreinick <[email protected]>
1 parent fbd4ec9 commit a775ecf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

internal/relui/workflows.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ func registerProdReleaseWorkflows(ctx context.Context, h *DefinitionHolder, buil
316316
{task.KindBeta, currentMajor + 1, "next beta"},
317317
{task.KindCurrentMinor, currentMajor, "next minor"},
318318
{task.KindPrevMinor, currentMajor - 1, "next minor"},
319+
{task.KindPrevMinor, currentMajor - 2, "next minor"}, // TODO(go.dev/issue/62076): Remove after Go 1.19.13 is out.
319320
}
320321
if time.Since(majorReleaseTime) < 7*24*time.Hour {
321322
releases = append(releases, release{task.KindMajor, currentMajor, "final"})

0 commit comments

Comments
 (0)