Description Usage Arguments Note Examples
View source: R/release-summary.R
Get a summary that can be used for release notes of the project.
1 | get_release_summary(repo, from, until, labels_mapping = NULL)
|
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. |
The API is experimental and subject to change.
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.