From 14e5bf5fbda6a49cf734521abe33d85b167d77e3 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 8 Jan 2025 01:16:38 -0600 Subject: [PATCH] add a button for the table --- humanTable.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/humanTable.go b/humanTable.go index f7a06b1..0fe2f31 100644 --- a/humanTable.go +++ b/humanTable.go @@ -156,5 +156,9 @@ func (f *Forge) sendRepoToTable(repo *gitpb.Repo) { end += "(m:" + repo.GetMasterBranchName() + ") " } + if repo.GetState() != "" { + end += "(" + repo.GetState() + ") " + } + log.Info(start, end) }