summaryrefslogtreecommitdiff
path: root/repo.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-01 10:46:32 -0600
committerJeff Carr <[email protected]>2024-12-01 10:46:32 -0600
commit8e9ec30b29ae53e28592e8ac7f48b2f46b8f935b (patch)
tree587c3e588629d3e76a7af9555b460a2d224e61d6 /repo.proto
parent455ea31d70b3dfa95ca4f269e42cf6a8dcf5f0d9 (diff)
save GoDeps at the time of publication to pkg.go.dev
Diffstat (limited to 'repo.proto')
-rw-r--r--repo.proto20
1 files changed, 10 insertions, 10 deletions
diff --git a/repo.proto b/repo.proto
index fff5579..62609d3 100644
--- a/repo.proto
+++ b/repo.proto
@@ -15,16 +15,16 @@ message Repo { // `autogenpb:marshal`
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;
-
- // things specific to golang projects
- 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
- GoDeps goDeps = 10;
- google.protobuf.Timestamp lastGoDep = 11; // last time go.sum was processed
-
- bool dirty = 12; // if git says things have been changed
+ GitTags tags = 6; // known tags
+ string goPath = 7; // `autogenpb:unique` // the logical path as used by golang: 'go.wit.com/apps/helloworld'
+ bool goLibrary = 8; // is this a golang library?
+ bool goBinary = 9; // is this a golang binary?
+ bool goPrimitive = 10; // if this is a golang primitive (only has go.mod)
+ bool goPlugin = 11; // is this a golang plugin?
+ GoDeps goDeps = 12; // what is in the go.sum file
+ google.protobuf.Timestamp lastGoDep = 13; // last time go.sum was processed
+ bool dirty = 14; // if git says things have been changed
+ GoDeps published = 15; // the last published go.mod/go.sum
}
message Repos { // `autogenpb:marshal`