From d0094d8bdacd5a7c04e5a248bb0b4e52b5393628 Mon Sep 17 00:00:00 2001 From: Markus Reiter <me@reitermark.us> Date: Sat, 5 Sep 2020 19:08:44 +0200 Subject: [PATCH] Add `GITHUB_FORK_ALLOWLIST`. --- Library/Homebrew/utils/shared_audits.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/utils/shared_audits.rb b/Library/Homebrew/utils/shared_audits.rb index bd60814e7e..e204ad0001 100644 --- a/Library/Homebrew/utils/shared_audits.rb +++ b/Library/Homebrew/utils/shared_audits.rb @@ -96,12 +96,19 @@ module SharedAudits "#{tag} is a GitLab pre-release." end + GITHUB_FORK_ALLOWLIST = %w[ + variar/klogg + ].freeze + def github(user, repo) metadata = github_repo_data(user, repo) return if metadata.nil? - return "GitHub fork (not canonical repository)" if metadata["fork"] + if metadata["fork"] && !GITHUB_FORK_ALLOWLIST.include?("#{user}/#{repo}") + return "GitHub fork (not canonical repository)" + end + if (metadata["forks_count"] < 30) && (metadata["subscribers_count"] < 30) && (metadata["stargazers_count"] < 75) return "GitHub repository not notable enough (<30 forks, <30 watchers and <75 stars)" -- GitLab