Skip to content

Labels

Not implemented

Labels is a planned feature and currently serves no purpose.

Labels describe the labels that are generated post-setup for supported Git hosting providers:

waku config

styles:
  my-style:
    labels:
      # The name of the label
      # (required)
      - name: ""

      # The color of the label.
      # Only HEX is allowed; #fff, #ffffff
      # (required)
        color: ""

      # The description of the label
      # (optional)
        description: ""
{
  "labels": [
    {
      // The name of the label
      // (required)
      "name": "",

      // The color of the label.
      // Only HEX is allowed; #fff, #ffffff
      // (required)
      "color": "",

      // The description of the label
      // (optional)
      "description": ""
    }
  ]
}