Skip to content

Commit

Permalink
internal/relui: add a solo Go 1.19 next minor workflow
Browse files Browse the repository at this point in the history
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 <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Heschi Kreinick <heschi@google.com>
  • Loading branch information
dmitshur authored and gopherbot committed Aug 16, 2023
1 parent fbd4ec9 commit a775ecf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions internal/relui/workflows.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@ func registerProdReleaseWorkflows(ctx context.Context, h *DefinitionHolder, buil
{task.KindBeta, currentMajor + 1, "next beta"},
{task.KindCurrentMinor, currentMajor, "next minor"},
{task.KindPrevMinor, currentMajor - 1, "next minor"},
{task.KindPrevMinor, currentMajor - 2, "next minor"}, // TODO(go.dev/issue/62076): Remove after Go 1.19.13 is out.
}
if time.Since(majorReleaseTime) < 7*24*time.Hour {
releases = append(releases, release{task.KindMajor, currentMajor, "final"})
Expand Down

0 comments on commit a775ecf

Please sign in to comment.