diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,6 +3,7 @@ package repostatus import ( "go.wit.com/gui" "go.wit.com/lib/gadgets" + "go.wit.com/lib/protobuf/gitpb" ) type RepoStatus struct { @@ -12,6 +13,8 @@ type RepoStatus struct { tags map[string]string InitOk bool // it takes a second or so to init these + pb *gitpb.Repo // the protobuf + // used to temporarily tell the automation tools to // try to ignore this repo's changes and state // specifically when doing formal releases, sometimes @@ -72,7 +75,7 @@ type RepoStatus struct { speedActual *gadgets.OneLiner gitConfig *GitConfig - goConfig GoConfig + // goConfig GoConfig switchBranchB *gui.Node targetBranch *gui.Node |
