Skip to content

Commit 90cbf51

Browse files
cliedemanchristophwitzko
authored andcommitted
fix: Added annotations
1 parent 65ae175 commit 90cbf51

File tree

2 files changed

+124
-48
lines changed

2 files changed

+124
-48
lines changed

pkg/semrel/structs.pb.go

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

pkg/semrel/structs.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ option go_package = "github.com/go-semantic-release/semantic-release/v2/pkg/semr
44
message RawCommit {
55
string SHA = 1;
66
string raw_message = 2;
7+
map<string, string> annotations = 3;
78
}
89

910
message Change {
1011
bool major = 1;
1112
bool minor = 2;
1213
bool patch = 3;
14+
map<string, string> annotations = 4;
1315
}
1416

1517
message Commit {
@@ -19,9 +21,11 @@ message Commit {
1921
string scope = 4;
2022
string message = 5;
2123
Change change = 6;
24+
map<string, string> annotations = 7;
2225
}
2326

2427
message Release {
2528
string SHA = 1;
2629
string version = 2;
30+
map<string, string> annotations = 3;
2731
}

0 commit comments

Comments
 (0)