You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
website: publish all commits, eliminating Website-Publish+1 vote
The main point of Website-Publish+1 was to manually avoid
a race in Cloud Build when multiple commits land. But now
cmd/locktrigger takes care of that race automatically, so there
is little point to Website-Publish+1 now. Stop looking for it.
(If a commit landed without Website-Publish+1, it would still be
published with the next Website-Publish+1 commit, so it was
no real restriction on who can publish content.)
I considered adding a rule like "DO NOT PUBLISH" in a commit
message means not to publish the commit, but once it lands,
again the next publishable commit is going to publish all
previous commits, so even the possibility of landing such commits
puts the repo in a very fragile state.
Better not to support that idea at all.
Fixesgolang/go#36707.
Change-Id: Icfe3bcdb0003608ff84bb300c43b61b542236571
Reviewed-on: https://go-review.googlesource.com/c/website/+/368366
Trust: Russ Cox <[email protected]>
Run-TryBot: Russ Cox <[email protected]>
TryBot-Result: Gopher Robot <[email protected]>
Reviewed-by: Dmitri Shuralyov <[email protected]>
Copy file name to clipboardExpand all lines: cmd/golangorg/README.md
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -27,10 +27,9 @@ on production resources.
27
27
## Deploying to go.dev and golang.org
28
28
29
29
Each time a CL is reviewed and submitted, the site is automatically deployed to App Engine.
30
-
If the CL is submitted with a Website-Publish +1 vote,
31
-
the new deployment automatically becomes https://go.dev/.
32
-
Otherwise, the new deployment can be found in the
33
-
[App Engine versions list](https://console.cloud.google.com/appengine/versions?project=golang-org&serviceId=default) and verified and manually promoted.
30
+
If it passes its serving-readiness checks, it will be automatically promoted to handle traffic.
31
+
Whether it passes or not, the new deployment can be found in the
0 commit comments