get_user_repo_list {metricminer}R Documentation

Retrieve list of repositories for an organization

Description

This is a function to get the information about a repository

Usage

get_user_repo_list(
  owner,
  count = "all",
  data_format = "dataframe",
  token = NULL
)

Arguments

owner

The owner of the repository. So for 'https://github.com/fhdsl/metricminer', it would be 'fhdsl'

count

The number of responses that should be returned. Default is 20 or you can say "all" to retrieve all.

data_format

Default is to return a curated data frame. However if you'd like to see the raw information returned from GitHub set format to "raw".

token

You can provide the Personal Access Token key directly or this function will attempt to grab a PAT that was stored using the 'authorize("github")' function

Value

a list of repositories that an organization has

Examples

## Not run: 

authorize("github")
get_user_repo_list(owner = "metricminer")

## End(Not run)


[Package metricminer version 0.5.1 Index]