diff options
| author | Jeff Carr <[email protected]> | 2025-01-08 01:16:38 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-08 01:16:38 -0600 |
| commit | 14e5bf5fbda6a49cf734521abe33d85b167d77e3 (patch) | |
| tree | 985d470137b1f9252e98a89b4dbcd5ef643fe94a | |
| parent | e0c0d3d9e6dd63f1f0df9b091c18c7fe0c8cd5b5 (diff) | |
add a button for the table
| -rw-r--r-- | humanTable.go | 4 |
1 files changed, 4 insertions, 0 deletions
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) } |
