Skip to content
Snippets Groups Projects
Unverified Commit 6d8978e0 authored by Markus Reiter's avatar Markus Reiter Committed by GitHub
Browse files

Merge pull request #8950 from alebcay/bitbucket-audit-fix

shared_audits: fix conditional in Bitbucket notability check
parents 7a3c43e3 534f0e61
No related branches found
No related tags found
No related merge requests found
......@@ -168,7 +168,7 @@ module SharedAudits
watcher_metadata = JSON.parse(watcher_out)
return if watcher_metadata.nil?
return if (forks_metadata["size"] < 30) && (watcher_metadata["size"] < 75)
return if forks_metadata["size"] >= 30 || watcher_metadata["size"] >= 75
"Bitbucket repository not notable enough (<30 forks and <75 watchers)"
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment