1
0
mirror of https://github.com/golang/go synced 2024-11-22 00:24:41 -07:00

codereview: permit CLs of the form weekly.DATE

gobuilder: recognize CLs of the form weekly.DATE

R=rsc, r
CC=golang-dev
https://golang.org/cl/4282052
This commit is contained in:
Andrew Gerrand 2011-03-17 09:11:08 +11:00
parent a93f70c21a
commit 5dd0869bf5
2 changed files with 2 additions and 2 deletions

View File

@ -779,7 +779,7 @@ def Incoming(ui, repo, opts):
_, incoming, _ = findcommonincoming(repo, getremote(ui, repo, opts))
return incoming
desc_re = '^(.+: |tag release\.|release\.|fix build)'
desc_re = '^(.+: |(tag )?(release|weekly)\.|fix build)'
desc_msg = '''Your CL description appears not to use the standard form.

View File

@ -64,7 +64,7 @@ var (
var (
goroot string
releaseRegexp = regexp.MustCompile(`^release\.[0-9\-.]+`)
releaseRegexp = regexp.MustCompile(`^(release|weekly)\.[0-9\-.]+`)
benchRequests vector.Vector
)