summaryrefslogtreecommitdiff
path: root/repos.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-29 01:23:51 -0600
committerJeff Carr <[email protected]>2024-11-29 01:23:51 -0600
commit96d37b5941717f9c3852429ba25420c6ccb3f997 (patch)
tree96ce9881925f71ea41effd3660ef24c318ddad61 /repos.proto
parent3b90d979d73da9896570d2dc927e05e769b9670b (diff)
rename this protobuf to something more specific
Diffstat (limited to 'repos.proto')
-rw-r--r--repos.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/repos.proto b/repos.proto
index 029bad2..9e02c08 100644
--- a/repos.proto
+++ b/repos.proto
@@ -7,6 +7,7 @@ package gitpb;
import "refs.proto";
import "godep.proto";
+import "gitTags.proto";
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
message Repo {
@@ -20,6 +21,8 @@ message Repo {
google.protobuf.Timestamp lastGoDep = 7; // last time go.sum was processed
bool goLibrary = 8; // if this is a golang library
bool goPrimitive = 9; // if this is a golang primitive
+
+ repeated GitTag gitTags = 10;
}
message Repos {