summaryrefslogtreecommitdiff
path: root/repo.proto
diff options
context:
space:
mode:
Diffstat (limited to 'repo.proto')
-rw-r--r--repo.proto4
1 files changed, 4 insertions, 0 deletions
diff --git a/repo.proto b/repo.proto
index 71f3010..6730af9 100644
--- a/repo.proto
+++ b/repo.proto
@@ -39,6 +39,9 @@ message Repo { // `autogenpb:marshal`
GitTimes times = 25; // store all the mtime values here. these are temporary
GoInfo goInfo = 26; // put all the go specifcs here
string stateChange = 27; // reason for state change
+ string lastTag = 28; // the oldest tag
+ string currentBranchName = 29; // the branch currently checked out
+ string currentBranchVersion = 30; // the branch currently checked out
}
message Repos { // `autogenpb:marshal`
@@ -71,4 +74,5 @@ message GoInfo {
GoDeps published = 9; // the last published go.mod/go.sum
bytes goMod = 10; // the last go.mod file
bytes goSum = 11; // the last go.sum file
+ bool gitIgnoresGoSum = 12; // does .gitignore ignore go.mod & go.sum?
}