File tree Expand file tree Collapse file tree 5 files changed +6
-110
lines changed
Expand file tree Collapse file tree 5 files changed +6
-110
lines changed Original file line number Diff line number Diff line change 44
55require (
66 github.com/Masterminds/semver/v3 v3.1.0
7+ github.com/go-semantic-release/commit-analyzer-cz v1.0.1
78 github.com/golang/protobuf v1.4.2
89 github.com/google/go-github/v32 v32.1.0
910 github.com/hashicorp/go-hclog v0.14.1
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m
1717github.com/envoyproxy/protoc-gen-validate v0.1.0 /go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c =
1818github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys =
1919github.com/fatih/color v1.7.0 /go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4 =
20+ github.com/go-semantic-release/commit-analyzer-cz v1.0.1 h1:tB3T93NO8cLxtu8FVJp/qRg3B8o+4IgUEbwE9OuzS3s =
21+ github.com/go-semantic-release/commit-analyzer-cz v1.0.1 /go.mod h1:H30LymC5l0bI1tj7wxHD5fvvINcu0vhC6akfhr4yHVQ =
22+ github.com/go-semantic-release/semantic-release/v2 v2.1.0 /go.mod h1:VSiaMm0rYu2A2OOmmgaXFFVHVAyrQQDMlpLQO0lEZ4k =
2023github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b /go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q =
2124github.com/golang/mock v1.1.1 /go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A =
2225github.com/golang/protobuf v1.2.0 /go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U =
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11package plugin
22
33import (
4+ defaultAnalyzer "github.com/go-semantic-release/commit-analyzer-cz/pkg/analyzer"
45 "github.com/go-semantic-release/semantic-release/v2/pkg/analyzer"
56 "github.com/go-semantic-release/semantic-release/v2/pkg/plugin"
67 "github.com/urfave/cli/v2"
@@ -9,7 +10,7 @@ import (
910func Main (c * cli.Context ) error {
1011 plugin .Serve (& plugin.ServeOpts {
1112 CommitAnalyzer : func () analyzer.CommitAnalyzer {
12- return & DefaultCommitAnalyzer {}
13+ return & defaultAnalyzer. DefaultCommitAnalyzer {}
1314 },
1415 })
1516 return nil
You canβt perform that action at this time.
0 commit comments