Files
velero/.github/labels.yml
Ming Qiu 836300f583 Fix labeler action failure
Signed-off-by: Ming Qiu <ming.qiu@broadcom.com>
2024-04-09 08:20:21 +00:00

40 lines
1.0 KiB
YAML

# Works with https://github.com/actions/labeler/
# Below this line, the keys are labels to be applied, and the values are the file globs to match against.
# Anything in the `design` directory gets the `Design` label.
Area/Design:
- changed-files:
- any-glob-to-any-file: 'design/*'
# Anything in the site directory gets the website label *EXCEPT* docs
Website:
- any:
- changed-files:
- any-glob-to-any-file: 'site/**/*'
- any-glob-to-any-file: '!site/content/docs/**/*'
Documentation:
- changed-files:
- any-glob-to-any-file: 'site/content/docs/**/*'
Dependencies:
- changed-files:
- any-glob-to-any-file: 'go.mod'
# Anything that has plugin infra will be labeled.
# Individual plugins don't necessarily live here, though
Area/Plugins:
- changed-files:
- any-glob-to-any-file: 'pkg/plugins/**/*'
has-unit-tests:
- changed-files:
- any-glob-to-any-file: 'pkg/**/*_test.go'
has-e2e-2tests:
- changed-files:
- any-glob-to-any-file: 'test/e2e/**/*'
has-changelog:
- changed-files:
- any-glob-to-any-file: 'changelogs/**'