From acaece26596d0fd68c02eb4860f1bc9230e9d07b Mon Sep 17 00:00:00 2001 From: schreifuchs Date: Mon, 1 Dec 2025 21:29:58 +0100 Subject: [PATCH] fix: do not list pull requests --- pkg/invoice/invoice.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/invoice/invoice.go b/pkg/invoice/invoice.go index 65e34d3..1775005 100644 --- a/pkg/invoice/invoice.go +++ b/pkg/invoice/invoice.go @@ -20,6 +20,7 @@ func (s *Service) Generate(creditor model.Entity, deptor *model.Entity, rate flo repo.Repo, gitea.ListIssueOption{ ListOptions: gitea.ListOptions{Page: 0, PageSize: 99999}, + Type: gitea.IssueTypeIssue, Since: config.Since, Before: config.Before, State: config.IssueState,