Skip to content

Commit

Permalink
Reduce window size
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrizic committed Mar 16, 2024
1 parent 13b2bed commit 81368be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion userlist/collaborators.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package userlist

const windowSize = 100

import (
"context"
"fmt"
Expand Down Expand Up @@ -135,7 +137,7 @@ func (c *UserListConfig) loadCollaborators() error {

variables := map[string]interface{}{
"organization": githubv4.String(org.Login),
"first": githubv4.Int(100),
"first": githubv4.Int(20),
"after": (*githubv4.String)(nil),
}

Expand Down

0 comments on commit 81368be

Please sign in to comment.