Learn R Programming

gitlabr (version 0.9)

gl_new_issue: Post a new issue or edit one

Description

Post a new issue or edit one

Post a new issue or edit one

Usage

gl_new_issue(title, project, ...)

gl_edit_issue(issue_id, project, force_api_v3 = FALSE, ...)

gl_close_issue(issue_id, project, ...)

gl_reopen_issue(issue_id, project, ...)

gl_assign_issue(issue_id, assignee_id = NULL, project, ...)

gl_unassign_issue(issue_id, project, ...)

Arguments

title

title of the issue

project

project where the issue should be posted

...

further parameters passed to the API call, may contain description, asignee_id, milestone_id, labels, state_event (for edit_issue).

issue_id

issue id (projectwide; for API v3 only you can use global iid when force_api_v3 is `TRUE` although this is not recommended!)

force_api_v3

a switch to force deprecated gitlab API v3 behavior that allows filtering by global iid. If `TRUE` filtering happens by global iid, if false, it happens by projectwide ID. For API v4, this must be FALSE (default)

assignee_id

numeric id of users as returned in '/users/' API request