Post issue to GitHub repository
post_issue(ref, title, ..., distinct = TRUE)
ref | Repository reference (list) created by |
---|---|
title | Issue title (required) |
... | Additional user-defined body parameters. Use |
distinct | Logical value to denote whether issues with the same title as a current open issue should be allowed |
Number (identifier) of posted issue
Other issues:
get_issue_comments()
,
get_issue_events()
,
get_issues()
,
parse_issue_comments()
,
parse_issue_events()
,
parse_issues()
,
post_issue_update()
,
report_discussion()
,
report_progress()
,
viz_waterfall()
if (FALSE) { myrepo <- create_repo_ref('emilyriederer', 'myrepo') post_issue(myrepo, title = 'this is the issue title', body = 'this is the issue body', labels = c('priority:high', 'bug')) } if (FALSE) { # can be used in conjunction with reprex pkg # example assumes code for reprex is on clipboard reprex::reprex(venue = "gh") post_issue(myrepo, title = "something is broken", body = paste( clipr::read_clip(), collapse = "\n") ) }