diff --git a/scm/gitlab.go b/scm/gitlab.go index 2f52971..56434d1 100644 --- a/scm/gitlab.go +++ b/scm/gitlab.go @@ -6,6 +6,7 @@ import ( "net/http" "os" "regexp" + "strconv" "strings" "github.com/gabrie30/ghorg/colorlog" @@ -103,7 +104,7 @@ func (c Gitlab) GetTopLevelGroups() ([]string, error) { } for _, g := range groups { - allGroups = append(allGroups, g.Path) + allGroups = append(allGroups, strconv.FormatInt(int64(g.ID), 10)) } // Exit the loop when we've seen all pages.