Skip to content

Commit cb52f2d

Browse files
style: proto
BREAKING CHANGE: plugin interface
1 parent 2fe7a31 commit cb52f2d

File tree

12 files changed

+297
-296
lines changed

12 files changed

+297
-296
lines changed

pkg/analyzer/commit_analyzer.pb.go

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/analyzer/commit_analyzer.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import "pkg/semrel/structs.proto";
55

66
message AnalyzeCommits {
77
message Request {
8-
repeated RawCommit RawCommits = 1;
8+
repeated RawCommit raw_commits = 1;
99
}
1010
message Response {
11-
repeated Commit Commits = 1;
11+
repeated Commit commits = 1;
1212
}
1313
}
1414

pkg/condition/ci_condition.pb.go

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/condition/ci_condition.proto

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,31 @@ option go_package = "github.com/go-semantic-release/semantic-release/pkg/conditi
44
message CIName {
55
message Request {}
66
message Response {
7-
string Value = 1;
7+
string value = 1;
88
}
99
}
1010

1111
message RunCondition {
1212
message Request {
13-
map<string, string> Value = 1;
13+
map<string, string> value = 1;
1414

1515
}
1616
message Response {
17-
string Error = 1;
17+
string error = 1;
1818
}
1919
}
2020

2121
message GetCurrentBranch {
2222
message Request {}
2323
message Response {
24-
string Value = 1;
24+
string value = 1;
2525
}
2626
}
2727

2828
message GetCurrentSHA {
2929
message Request {}
3030
message Response {
31-
string Value = 1;
31+
string value = 1;
3232
}
3333
}
3434

0 commit comments

Comments
 (0)