We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13b2bed + aac12a4 commit b72ad6aCopy full SHA for b72ad6a
1 file changed
userlist/collaborators.go
@@ -9,6 +9,8 @@ import (
9
"time"
10
)
11
12
+const windowSize = 100
13
+
14
func (c *UserListConfig) loadCollaborators() error {
15
slog.Info("Loading collaborators", "enterprise", c.enterprise)
16
c.userList = UserList{
@@ -135,7 +137,7 @@ func (c *UserListConfig) loadCollaborators() error {
135
137
136
138
variables := map[string]interface{}{
139
"organization": githubv4.String(org.Login),
- "first": githubv4.Int(100),
140
+ "first": githubv4.Int(20),
141
"after": (*githubv4.String)(nil),
142
}
143
0 commit comments