Skip to content

Add descriptions for use_github_labels() #290

@batpigandme

Description

@batpigandme

Just ~parking this here as one possible approach. However, it now occurs to me that there's probably an advantage to having this nested as a list somehow…

#' @rdname use_github_labels
#' @export
tidy_labels <- function() {
  data.frame(
    label = c(
      "bug", "feature", "reprex", "wip", "docs", "performance",
      "good first issue", "help wanted"
    ),
    colour = c(
      "e02a2a", "009800", "eb6420", "eb6420", "0052cc", "fbca04",
      "484fb5", "008672"
    ),
    description = c(
      "type; indicates an unexpected problem or unintended behavior.",
      "type; indicates a feature request or enhancement.",
      "indicates that an issue does not have a minimal reproducible example and that a reply has been sent requesting one from the user.",
      "indicates that someone else is working on it or has promised to.",
      "type; indicates an issue with the documentation.",
      "indicates a non-breaking area related to performance.",
      "indicates a good issue for first-time contributors.",
      "indicates that a maintainer wants help on an issue."
    )
  )
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    featurea feature request or enhancementgitgit, GitHub, and CI in generalwipwork in progress

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions