List members of a specific project

gl_list_project_members(project, ...)

Arguments

project

id (preferred way) or name of the project. Not repository name.

...

passed on to gitlab() API call for "project"

Value

A tibble with the project members information

Examples

if (FALSE) {
set_gitlab_connection(
  gitlab_url = "https://gitlab.com",
  private_token = Sys.getenv("GITLAB_COM_TOKEN")
)
gl_list_project_members(project = "<<your-project-id>>")
}