File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -31,20 +31,16 @@ UPSTREAM commits are validated against the following regular expression:
31
31
Examples of valid summaries:
32
32
33
33
UPSTREAM: 12345: A kube fix
34
- UPSTREAM: coreos/etcd: 12345: An etcd fix
35
34
UPSTREAM: <carry>: A carried kube change
36
35
UPSTREAM: <drop>: A dropped kube change
37
- UPSTREAM: revert: abcd123: coreos/etcd: 12345: An etcd fix
38
- UPSTREAM: k8s.io/heapster: 12345: A heapster fix
36
+ UPSTREAM: revert: 12345: A kube revert
39
37
40
38
`
41
39
42
40
var AllValidators = []func ([]util.Commit ) error {
43
41
ValidateUpstreamCommitSummaries ,
44
42
ValidateUpstreamCommitsWithoutGodepsChanges ,
45
- ValidateUpstreamCommitModifiesSingleGodepsRepo ,
46
43
ValidateUpstreamCommitModifiesOnlyGodeps ,
47
- ValidateUpstreamCommitModifiesOnlyDeclaredGodepRepo ,
48
44
ValidateUpstreamCommitModifiesOnlyKubernetes ,
49
45
}
50
46
Original file line number Diff line number Diff line change 9
9
"strings"
10
10
)
11
11
12
- var UpstreamSummaryPattern = regexp .MustCompile (`UPSTREAM: (revert: [a-f0-9]{7,}: )?(([\w\.-]+\/[\w-\.-]+)?: )?(\d+:|<carry>:|<drop>:)` )
12
+ var UpstreamSummaryPattern = regexp .MustCompile (`UPSTREAM: (revert: )?(([\w\.-]+\/[\w-\.-]+)?: )?(\d+:|<carry>:|<drop>:)` )
13
13
14
14
// supportedHosts maps source hosts to the number of path segments that
15
15
// represent the account/repo for that host. This is necessary because we
You can’t perform that action at this time.
0 commit comments