create_issue: Create an Issue object

Description Usage Value Examples

Description

Create an Issue object

Usage

1

Value

Issue object

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
## Not run: 

options("jira_user" = "my_user_name") ## my username is admin
options("jira_password" = "xxxx")
options("jira_url" = "jira/")
options("jira_project" = "BAS")


create_issue()
issue$project_key <- "BAS"
issue$assignee <- "my_assignee"
issue$issue_type <- "Task"
issue$summary <- "TEST 1"
issue$description <- list("This look concerning", head(iris, 4))
issue$components <- "Some existing component"
issue$custom_fields <- list("customfield_11131" = "ADM-283", ## Link to EPIC
                            "customfield_11130" = "115")


  post_issue(issue) ## post to JIRA using options()


## End(Not run)

awalker89/Rjira documentation built on May 11, 2019, 4:09 p.m.