disable pagination for issue

This commit is contained in:
Shane C 2024-09-08 20:19:23 -04:00
parent 7e0eca2af3
commit 751729169d
Signed by: shanec
GPG key ID: E46B5FEA35B22FF9

View file

@ -192,6 +192,9 @@ var rootCmd = &cobra.Command{
repoOwner, repoName := actionCtx.Repo()
issues, _, err := forgeClient.ListIssues(forgejo.ListIssueOption{
ListOptions: forgejo.ListOptions{
Page: -1,
},
Type: forgejo.IssueTypeIssue,
})
if err != nil {