cncf / hugo-netlify-starter

Static website template for CNCF projects
https://cncf-hugo-starter.netlify.com/
Other
26 stars 16 forks source link

Add labels for effort, priority, infrastructure, cleanup/refactoring, etc #79

Closed chalin closed 2 years ago

chalin commented 2 years ago

For an example of such labels see https://github.com/etcd-io/website/labels. It'll be best to add them via the settings.yml file.

chalin commented 2 years ago

I believe that the list of labels in settings.yml needs to be exhaustive, so here is a list of the existing labels:

Or in text form:

$ curl https://api.github.com/repos/cncf/hugo-netlify-starter/labels
[
  {
    "id": 1728669057,
    "node_id": "MDU6TGFiZWwxNzI4NjY5MDU3",
    "url": "https://api.github.com/repos/cncf/hugo-netlify-starter/labels/bug",
    "name": "bug",
    "color": "d73a4a",
    "default": true,
    "description": "Something isn't working"
  },
  {
    "id": 1728669064,
    "node_id": "MDU6TGFiZWwxNzI4NjY5MDY0",
    "url": "https://api.github.com/repos/cncf/hugo-netlify-starter/labels/documentation",
    "name": "documentation",
    "color": "0075ca",
    "default": true,
    "description": "Improvements or additions to documentation"
  },
  {
    "id": 1728669068,
    "node_id": "MDU6TGFiZWwxNzI4NjY5MDY4",
    "url": "https://api.github.com/repos/cncf/hugo-netlify-starter/labels/duplicate",
    "name": "duplicate",
    "color": "cfd3d7",
    "default": true,
    "description": "This issue or pull request already exists"
  },
  {
    "id": 1728669072,
    "node_id": "MDU6TGFiZWwxNzI4NjY5MDcy",
    "url": "https://api.github.com/repos/cncf/hugo-netlify-starter/labels/enhancement",
    "name": "enhancement",
    "color": "a2eeef",
    "default": true,
    "description": "New feature or request"
  },
  {
    "id": 1728669076,
    "node_id": "MDU6TGFiZWwxNzI4NjY5MDc2",
    "url": "https://api.github.com/repos/cncf/hugo-netlify-starter/labels/good%20first%20issue",
    "name": "good first issue",
    "color": "7057ff",
    "default": true,
    "description": "Good for newcomers"
  },
  {
    "id": 1728669078,
    "node_id": "MDU6TGFiZWwxNzI4NjY5MDc4",
    "url": "https://api.github.com/repos/cncf/hugo-netlify-starter/labels/help%20wanted",
    "name": "help wanted",
    "color": "008672",
    "default": true,
    "description": "Extra attention is needed"
  },
  {
    "id": 1728669082,
    "node_id": "MDU6TGFiZWwxNzI4NjY5MDgy",
    "url": "https://api.github.com/repos/cncf/hugo-netlify-starter/labels/invalid",
    "name": "invalid",
    "color": "e4e669",
    "default": true,
    "description": "This doesn't seem right"
  },
  {
    "id": 1728669083,
    "node_id": "MDU6TGFiZWwxNzI4NjY5MDgz",
    "url": "https://api.github.com/repos/cncf/hugo-netlify-starter/labels/question",
    "name": "question",
    "color": "d876e3",
    "default": true,
    "description": "Further information is requested"
  },
  {
    "id": 1728669087,
    "node_id": "MDU6TGFiZWwxNzI4NjY5MDg3",
    "url": "https://api.github.com/repos/cncf/hugo-netlify-starter/labels/wontfix",
    "name": "wontfix",
    "color": "ffffff",
    "default": true,
    "description": "This will not be worked on"
  }
]
nate-double-u commented 2 years ago

See also: https://github.com/cncf/techdocs/blob/0435d06dadddc0f86a8894251bbb71a642775f3b/.github/settings.yml#L49-L101