Restore GitHub functionality

My guess is that GitHub changed something here recently, which is why it
no longer worked without the explicit arguments
This commit is contained in:
delvh 2023-07-15 22:03:01 +02:00
parent 482c085290
commit ff5c3f7b47
No known key found for this signature in database
GPG Key ID: 3DECE05F6D9A647C
1 changed files with 9 additions and 2 deletions

View File

@ -35,11 +35,13 @@ func (gh *GitHub) Generate() (string, []Entry, error) {
prs := make([]Entry, 0)
state := "merged"
isString := "is:pull-request"
if gh.Issues {
state = "closed"
isString = "is:issue"
}
query := fmt.Sprintf(`repo:%s is:%s milestone:"%s"`, gh.Repo, state, gh.Milestone)
query := fmt.Sprintf(`repo:%s %s is:%s milestone:"%s"`, gh.Repo, isString, state, gh.Milestone)
p := 1
perPage := 100
for {
@ -89,7 +91,12 @@ func (gh *GitHub) Contributors() (ContributorList, error) {
gh.initClient(ctx)
contributorsMap := make(map[string]bool)
query := fmt.Sprintf(`repo:%s is:merged milestone:"%s"`, gh.Repo, gh.Milestone)
isString := "is:pull-request"
if gh.Issues {
isString = "is:issue"
}
query := fmt.Sprintf(`repo:%s %s is:merged milestone:"%s"`, gh.Repo, isString, gh.Milestone)
p := 1
perPage := 100
for {