find_issue {ottrpal} | R Documentation |
Find an issue on GitHub with a particular title
Description
Given text and repository name, find if an issue exists.
Usage
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
## Not run:
authorize("github")
find_issue(text = "TEST", repo_name = "jhudsl/ottrpal")
## End(Not run)
[Package ottrpal version 2.0.0 Index]