get_release_summary: Get a summary that can be used for release notes of the...

Description Usage Arguments Note Examples

View source: R/release-summary.R

Description

Get a summary that can be used for release notes of the project.

Usage

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

Arguments

repo

The repository name.

from

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

until

The end date of pull request or issue 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_release_summary(repo, from, until, labels_mapping)

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