Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1010 Bytes

labeling.md

File metadata and controls

45 lines (33 loc) · 1010 Bytes

Labeling

Prow github actions expects the file .prowlabels.yaml to be in the root of the project. This is needed for most labeling commands and jobs. All of the following examples can be placed simultaneously in the .prowlabels.yaml file.

Area labels

area:
  - bug
  - important

With the command /area bug, the issue or PR will be labeled with area/bug

Kind labels

kind:
  - failing-test
  - cleanup

With the command /kind cleanup, the issue or PR will be labeled with kind/cleanup

Priority labels

priority:
  - low
  - high

With the command /priority low, the issue or PR will be labeled with priority/low

Automatic PR labels

To automatically label PRs based on file globs, it's recommended to use the GitHub actions/labeler workflow. The Digital Ocean Glob Tool can be helpful when specifying and building file globs.