Skip to content

Commit b19f5f9

Browse files
committed
simplify vendor commit checker
1 parent b10515a commit b19f5f9

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

tools/rebasehelpers/commitchecker/validate.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,16 @@ UPSTREAM commits are validated against the following regular expression:
3131
Examples of valid summaries:
3232
3333
UPSTREAM: 12345: A kube fix
34-
UPSTREAM: coreos/etcd: 12345: An etcd fix
3534
UPSTREAM: <carry>: A carried kube change
3635
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
3937
4038
`
4139

4240
var AllValidators = []func([]util.Commit) error{
4341
ValidateUpstreamCommitSummaries,
4442
ValidateUpstreamCommitsWithoutGodepsChanges,
45-
ValidateUpstreamCommitModifiesSingleGodepsRepo,
4643
ValidateUpstreamCommitModifiesOnlyGodeps,
47-
ValidateUpstreamCommitModifiesOnlyDeclaredGodepRepo,
4844
ValidateUpstreamCommitModifiesOnlyKubernetes,
4945
}
5046

tools/rebasehelpers/util/git.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
)
1111

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>:)`)
1313

1414
// supportedHosts maps source hosts to the number of path segments that
1515
// represent the account/repo for that host. This is necessary because we

0 commit comments

Comments
 (0)