get_pull_requests_summary: Get a summary on pull requests of the project.

Description Usage Arguments Note Examples

View source: R/release-summary.R

Description

Get a summary on pull requests of the project.

Usage

1
get_pull_requests_summary(repo, from, until, labels_mapping = NULL)

Arguments

repo

The repository name.

from

The start date of pull request closed time that the summary operate on.

until

The end date of pull request closed time that the summary operate on.

labels_mapping

The list of mappings from labels to section text in the summary.

Note

The API is experimental and subject to change.

Examples

1
2
3
4
5
6
7
8
repo <- "kubeflow/common"
from <- "2020-05-10"
until <- "2020-05-19"
labels_mapping <- list(
  "size/S" = "Small Changes",
  "size/L" = "Large Changes",
  "size/M" = "Medium Changes")
get_pull_requests_summary(repo, from, until, labels_mapping)

terrytangyuan/maintainer-tools documentation built on Sept. 6, 2020, 11:53 a.m.