Given text and repository name, find if an issue exists.

find_issue(text, repo_name, token = NULL)

Arguments

text

What text to be searched for in the GitHub issues. Can be regex.

repo_name

the name of the repository, e.g. jhudsl/OTTR_Template

token

A personal access token from GitHub. Only necessary if the repository being checked is a private repository.

Value

A TRUE/FALSE whether or not the issue with this text on this repository exists.

Examples

if (FALSE) { # \dontrun{

authorize("github")

find_issue(text = "TEST", repo_name = "jhudsl/ottrpal")
} # }