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

path <- system.file("data_issues", package = "IssueTrackeR")
open_issues <- get_issues(
    source = "local",
    dataset_dir = path,
    dataset_name = "open_issues.yaml"
)
#> Looking into open_issues.yaml ...
#> The issues will be read from /home/runner/work/_temp/Library/IssueTrackeR/data_issues/open_issues.yaml.
new_issues <- rbind(open_issues[1, ], open_issues[-1, ])
path <- system.file("data_issues", package = "IssueTrackeR")
open_issues <- get_issues(
    source = "local",
    dataset_dir = path,
    dataset_name = "open_issues.yaml"
)
#> Looking into open_issues.yaml ...
#> The issues will be read from /home/runner/work/_temp/Library/IssueTrackeR/data_issues/open_issues.yaml.
closed_issues <- get_issues(
    source = "local",
    dataset_dir = path,
    dataset_name = "closed_issues.yaml"
)
#> Looking into closed_issues.yaml ...
#> The issues will be read from /home/runner/work/_temp/Library/IssueTrackeR/data_issues/closed_issues.yaml.
new_issues <- rbind(open_issues, closed_issues)