This repository has been archived by the owner on Jan 26, 2023. It is now read-only.
filtering out not wanted bounties before entering the loop #37
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
before the loop have performed ~130 checks (right now there is about 130 bounties - open or closed) for every element in issues list (25 issues on one list) which gave about 130*25 = 750 checks. (will be more in a future)
this fix is removing not related bounties and enters the loop. for most common repositories (with 2 bounties) this will result with only one initial check for every bounty (130right now) and then check only related with every issue on issue list (25*2) which sums up to 180 operations on average.