2024-11-27 13:57:17 -06:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package gitpb;
|
|
|
|
|
|
|
|
// stores information about git repos
|
|
|
|
// If the project is in golang, also gets the go language dependacies
|
|
|
|
|
2024-11-29 18:15:25 -06:00
|
|
|
import "gitTag.proto";
|
2024-11-29 21:51:30 -06:00
|
|
|
import "goDep.proto";
|
2024-11-27 13:57:17 -06:00
|
|
|
import "google/protobuf/timestamp.proto"; // Import the well-known type for Timestamp
|
|
|
|
|
2024-11-29 21:51:30 -06:00
|
|
|
message Repo { // `autogenpb:marshal`
|
|
|
|
string fullPath = 1; // the actual path to the .git directory: '/home/devel/golang.org/x/tools'
|
2024-11-29 18:15:25 -06:00
|
|
|
google.protobuf.Timestamp lastPull = 2; // last time a git pull was done
|
2024-11-29 21:51:30 -06:00
|
|
|
string masterBranchName = 3; // git 'main' or 'master' branch name
|
|
|
|
string develBranchName = 4; // whatever the git 'devel' branch name is
|
|
|
|
string userBranchName = 5; // whatever your username branch is
|
|
|
|
GitTags tags = 6;
|
2024-11-29 16:22:19 -06:00
|
|
|
|
2024-11-29 18:15:25 -06:00
|
|
|
// things specific to golang projects
|
2024-11-29 21:51:30 -06:00
|
|
|
string goPath = 7; // `autogenpb:unique` // the logical path as used by golang: 'go.wit.com/apps/helloworld'
|
|
|
|
bool goLibrary = 8; // if this is a golang library
|
|
|
|
bool goPrimitive = 9; // if this is a golang primitive
|
2024-11-29 18:15:25 -06:00
|
|
|
GoDeps goDeps = 10;
|
|
|
|
google.protobuf.Timestamp lastGoDep = 11; // last time go.sum was processed
|
2024-12-01 00:49:25 -06:00
|
|
|
|
|
|
|
bool dirty = 12; // if git says things have been changed
|
2024-11-27 13:57:17 -06:00
|
|
|
}
|
|
|
|
|
2024-11-29 21:51:30 -06:00
|
|
|
message Repos { // `autogenpb:marshal`
|
2024-12-01 00:49:25 -06:00
|
|
|
string uuid = 1; // `autogenpb:uuid:8daaeba1-fb1f-4762-ae6e-95a55d352673`
|
2024-11-27 13:57:17 -06:00
|
|
|
string version = 2; // maybe can be used for protobuf schema change violations
|
|
|
|
repeated Repo repos = 3;
|
|
|
|
}
|