Merge pull request #8950 from alebcay/bitbucket-audit-fix
shared_audits: fix conditional in Bitbucket notability check
This commit is contained in:
commit
6d8978e0be
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user