Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/github/constants.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package github

// PageNumberLimit is the limit on the number of pages that will be traversed
const PageNumberLimit = 2
const PageNumberLimit = 12
4 changes: 3 additions & 1 deletion pkg/github/projects/projects.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ import (
)

// PageNumberLimit is the limit on the number of pages that will be traversed
const PageNumberLimit = 2
// Setting to 10 because GH limits active issues in a project to 1_200
// https://docs.github.com/en/issues/planning-and-tracking-with-projects/managing-items-in-your-project/adding-items-to-your-project
const PageNumberLimit = 12

// QueryListProjects lists all projects in a repository
// organization(login: "grafana") {
Expand Down