Order GitLab repos by ID (#3047)

This commit is contained in:
Cody Rose 2024-07-09 10:39:47 -04:00 committed by GitHub
parent 3a8d826999
commit 1a73442088
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -450,8 +450,8 @@ func (s *Source) getAllProjectRepos(
}
const (
orderBy = "last_activity_at"
paginationLimit = 100 // Default is 20, max is 100.
orderBy = "id" // TODO: Use keyset pagination (https://docs.gitlab.com/ee/api/rest/index.html#keyset-based-pagination)
paginationLimit = 100 // Default is 20, max is 100.
)
listOpts := gitlab.ListOptions{PerPage: paginationLimit}