mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-22 19:51:58 +01:00
26 lines
510 B
Go
26 lines
510 B
Go
|
package sdk
|
||
|
|
||
|
import (
|
||
|
"code.gitea.io/sdk/gitea"
|
||
|
)
|
||
|
|
||
|
// GetPulls returns all matching PRs from a Gitea instance
|
||
|
func GetPulls(client *gitea.Client, owner, repo string, opts gitea.ListPullRequestsOptions) ([]*gitea.PullRequest, error) {
|
||
|
pulls := make([]*gitea.PullRequest, 0)
|
||
|
p := 1
|
||
|
for {
|
||
|
opts.Page = p
|
||
|
list, err := client.ListRepoPullRequests(owner, repo, opts)
|
||
|
if err != nil {
|
||
|
return pulls, err
|
||
|
}
|
||
|
p++
|
||
|
pulls = append(pulls, list...)
|
||
|
|
||
|
if len(list) == 0 {
|
||
|
break
|
||
|
}
|
||
|
}
|
||
|
return pulls, nil
|
||
|
}
|