diff options
Diffstat (limited to 'repo.proto')
| -rw-r--r-- | repo.proto | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -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` |
