Merge pull request #14768 from issyl0/contributions-fix-trailers-args

dev-cmd/contributions: Correctly order the trailers method args
This commit is contained in:
Issy Long 2023-02-22 17:41:23 +00:00 committed by GitHub
commit 1b3fa0bef7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,8 +144,8 @@ module Homebrew
data[repo] = { data[repo] = {
commits: GitHub.repo_commit_count_for_user(repo_full_name, person), commits: GitHub.repo_commit_count_for_user(repo_full_name, person),
coauthorships: git_log_trailers_cmd(T.must(repo_path), "Co-authored-by", person, args), coauthorships: git_log_trailers_cmd(T.must(repo_path), person, "Co-authored-by", args),
signoffs: git_log_trailers_cmd(T.must(repo_path), "Signed-off-by", person, args), signoffs: git_log_trailers_cmd(T.must(repo_path), person, "Signed-off-by", args),
} }
end end