-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
increase max_pull_requests to 250 #2681
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Based on this comment, they currently don't have a good way to get the correct number of PRs between two tags. I think this issue will come back once the number of PRs passes 250.
Yeah, there's no great option here. What would you like to see this set at? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm ok with 250 and ignore the warning in the future.
Issue This PR Addresses
Fixes #2645
Type of Change
Description
According to the build logs for Release 2.4.0, 220 merged PRs were accounted for.
The easiest fix is to increase the
max_pull_requests
option in therelease-changelog-builder-config.json
However, I have been trying, but have failed, to understand how it got to 220 merged PRs.
Trying to query merged PRs during the time frame provided by the log only comes up with 80 PRs
Querying for all closed PRs, not just merged, during this time frame comes up with 113 PRs.
Similar discrepancies are also in the Release 2.3.0 log where 152 merged PRs were accounted for. But querying on GitHub, there is only 48 merged PRs, and 60 closed.
I couldn't load logs for earlier releases to check.
I suspect, but am unsure if PRs from the merged forked repositories are being accounted for.
Checklist