github_api_project_issue_search | R Documentation |
Download Commits from "GET /repos/owner/repo/search/issues" endpoint. This search endpoint allows for optional query parameter. Potential queries are found [here](https://docs.github.com/en/rest/search/search?apiVersion=2022-11-28). The query parameter assumes that owner/repo is already prepended to the query. If no query is passed to the function, it will prepend only owner/repo to the query.
github_api_project_issue_search(
owner,
repo,
token,
query = NULL,
issue_or_pr,
verbose = TRUE
)
owner |
GitHub's repository owner (e.g. sailuh) |
repo |
GitHub's repository name (e.g. kaiaulu) |
token |
Your GitHub API token |
query |
Optional query to append to search api |
issue_or_pr |
This specifies whether issues or pull requests are being searched for. Acceptable inputs are "is:issue" or "is:pull-request". |
verbose |
Prints operational messages when se to true such as stating the search query. |
For details, see https://docs.github.com/en/rest/search/search?apiVersion=2022-11-28.
For details on timestampes, se https://docs.github.com/en/search-github/searching-on-github/searching-issues-and-pull-requests#search-by-when-an-issue-or-pull-request-was-created-or-last-updated
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.