Post a new issue or edit one
Post a new issue or edit one
gl_new_issue(title, project, ...)gl_create_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, ...)
title of the issue
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 (projectwide; for API v3 only you can use global iid when force_api_v3 is `TRUE` although this is not recommended!)
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)
numeric id of users as returned in '/users/' API request