diff options
| author | Jeff Carr <[email protected]> | 2024-11-05 03:14:46 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-05 03:14:46 -0600 |
| commit | 8eb7501855d71941784d27b6dfe71c7a53699f0a (patch) | |
| tree | a6ab3af14c90b9fabe3dcc9b6c74188a15c5f1c9 /structs.go | |
| parent | 8786690d4665648d2d0527101fdb047c2c4743ec (diff) | |
add repo.Whitelist bool
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -12,6 +12,13 @@ type RepoStatus struct { tags map[string]string InitOk bool // it takes a second or so to init these + // used to temporarily tell the automation tools to + // try to ignore this repo's changes and state + // specifically when doing formal releases, sometimes + // some repos are in flux and can't be changed. This + // means attempt to overlook that situation. + Whitelist bool + window *gadgets.BasicWindow // the main window for this repo Tags *GitTagBox // a box of all the git tags |
