gitpb/gitTag.proto

21 lines
697 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package gitpb;
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
2024-12-01 22:23:38 -06:00
message GitTag { // `autogenpb:marshal`
2025-01-10 04:23:13 -06:00
string refname = 1; // `autogenpb:unique` `autogenpb:sort` // tag name. treated as unique
google.protobuf.Timestamp creatordate = 2; // git creatordate
google.protobuf.Timestamp authordate = 3; // git author date
2025-01-10 04:23:13 -06:00
string hash = 4; // `autogenpb:unique` // git hash
string subject = 5; // git tag subject
}
2025-01-10 04:23:13 -06:00
message GitTags { // `autogenpb:marshal` `autogenpb:mutex`
string uuid = 1; // `autogenpb:uuid`
string version = 2; // `autogenpb:version:v0.0.47`
repeated GitTag gitTags = 3;
}