S3 method for combining IssueTB objects by rows.

# S3 method for class 'IssueTB'
rbind(...)

# S3 method for class 'IssuesTB'
rbind(...)

Arguments

...

Objects of class IssueTB or IssuesTB.

Value

An IssueTB object containing the combined rows of all input objects.

See also

rbind for the generic function

Examples

issues_selector <- init_selector(
    source = "Local",
    file = file.path(
        system.file("data_issues", package = "IssueTrackeR"),
        "list_issues.yaml"
    )
)
open_issues <- get_issues(selector = issues_selector)
#> The issues will be read from /home/runner/work/_temp/Library/IssueTrackeR/data_issues/list_issues.yaml.
new_issues <- rbind(open_issues[1, ], open_issues[-1, ])
issues_selector <- init_selector(
    source = "Local",
    file = file.path(
        system.file("data_issues", package = "IssueTrackeR"),
        "list_issues.yaml"
    )
)
open_issues <- get_issues(selector = issues_selector)
#> The issues will be read from /home/runner/work/_temp/Library/IssueTrackeR/data_issues/list_issues.yaml.
new_issues <- rbind(open_issues, open_issues)