Skip to content

TalhoukLab/jirarest

Repository files navigation

jirarest

R-CMD-check

The goal of jirarest is to provide a REST API in R for accessing the BCGSC Jira ticketing system.

Installation

You can install the development version of jirarest from GitHub with:

# install.packages("devtools")
devtools::install_github("TalhoukLab/jirarest")

Examples

Here are examples of the currently implemented resources.

Create Issue

An issue can be created within a Jira project.

library(jirarest)
create_issue(project = "BC",
             summary = "new analysis",
             description = "analysis for someone")

Add Comment

We can add comments to existing issues. Assumes that the current working directory is the name of issue.

add_comment("report completed")

Attach File

Files such as PDF reports and data can be attached to issues.

attach_file("/path/to/file")

About

Accessing the Jira REST API

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages