diff options
| author | Jeff Carr <[email protected]> | 2025-09-27 11:17:01 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-27 11:17:37 -0500 |
| commit | e59f87c92c8df9465952ecd8c76478e4dc351608 (patch) | |
| tree | 27bb48a65d95a3eda15d795911bbb3af2213ee14 /repos.go | |
| parent | ac07bf7b29c61f99a9d935bb8ff2126bb278667b (diff) | |
show devel branchesv0.0.157
Diffstat (limited to 'repos.go')
| -rw-r--r-- | repos.go | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -33,3 +33,29 @@ func (f *Forge) PrepareCheckRepos() *gitpb.Repos { } return submit } + +func (f *Forge) PrepareCheckRepo(namespace string) *gitpb.Repo { + found := f.Repos.FindByNamespace(namespace) + if found == nil { + return nil + } + newrepo := new(gitpb.Repo) + newrepo.Namespace = found.Namespace + newrepo.URL = found.URL + newrepo.Tags = gitpb.NewGitTags() + + if found.Tags == nil { + log.Infof("%s Tags == nil\n", found.FullPath) + return newrepo + } + + if found.Tags.Master != nil { + newrepo.Tags.Master = proto.Clone(found.Tags.Master).(*gitpb.GitTag) + } else { + log.Infof("no master tag %s\n", found.FullPath) + } + if found.Tags.Devel != nil { + newrepo.Tags.Devel = proto.Clone(found.Tags.Devel).(*gitpb.GitTag) + } + return newrepo +} |
