Skip to contents

This checks if a user is vouched, denounced, or unknown.

Usage

check(username, default_platform = "", vouched_file = "", blame = FALSE)

Arguments

username

Username to check (supports platform:user format). Missing values (NA) are dropped with an informational message.

default_platform

Assumed platform for entries without explicit platform.

vouched_file

Path to vouched contributors file (default: VOUCHED.td or .github/VOUCHED.td).

blame

Include git blame author for a matched entry when available.

Value

One of "vouched", "denounced", or "unknown".

Attribution

Documentation for this function is copied nearly verbatim from vouch and is owned by Mitchell Hashimoto.

Examples

if (FALSE) { # \dontrun{
check("someuser")
check("github:someuser")
} # }