Create a new IssueTB
object
a string. The title of the issue.
a string. The title of the issue.
a string. The title of the issue.
a character string that is either "open"
(by default) if
the issue is still open or "closed"
if the issue is now closed.
a date. The title of the issue.
a vector string (or missing). The labels of the issue.
a string (or missing). The milestone of the issue.
a list representing the object.
A character string specifying the GitHub repository name (only
taken into account if source
is set to "online"
).
Defaults to the package option IssueTrackeR.repo
.
A character string specifying the GitHub owner (only taken
into account if source
is set to "online"
).
Defaults to the package option IssueTrackeR.owner
.
Other information we would like to add to the issue.
a IssueTB
object.
# Empty issue
issue1 <- new_issue()
# Custom issue
issue2 <- new_issue(
title = "Nouvelle issue",
body = "Un nouveau bug pour la fonction...",
number = 47,
created_at = Sys.Date()
)
issue3 <- new_issue(issue = issue2)