projectdiscovery/nuclei · error
error listing issues for %s, %s: %w
Error message
error listing issues for %s, %s: %w
What it means
Error "error listing issues for %s, %s: %w" thrown in projectdiscovery/nuclei.
Source
Thrown at pkg/reporting/trackers/github/github.go:202
}
func (i *Integration) findIssueByTitle(ctx context.Context, title string) (*github.Issue, error) {
req := &github.SearchOptions{
Sort: "updated",
Order: "desc",
TextMatch: false,
ListOptions: github.ListOptions{
Page: 1,
PerPage: 100,
},
}
query := fmt.Sprintf(`is:issue repo:%s/%s "%s"`, i.options.Owner, i.options.ProjectName, title)
for {
issues, resp, err := i.client.Search.Issues(ctx, query, req)
if err != nil {
return nil, fmt.Errorf("error listing issues for %s, %s: %w", i.options.Owner, i.options.ProjectName, err)
}
for _, issue := range issues.Issues {
if issue != nil && issue.Title != nil && *issue.Title == title {
return issue, nil
}
}
if resp.NextPage <= req.Page || len(issues.Issues) == 0 {
return nil, io.EOF
}
req.ListOptions = github.ListOptions{
Page: resp.NextPage,
PerPage: 100,
}
}
}View on GitHub (pinned to 265b3a3dec)
When it happens
Trigger: Thrown at pkg/reporting/trackers/github/github.go:202 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of projectdiscovery/nuclei@265b3a3dec (2026-08-15).
Data as JSON: /api/errors/30634567b820fa93.
Report an issue: GitHub.