Update labeler configuration for v5

Signed-off-by: Marc Khouzam <marc.khouzam@gmail.com>
This commit is contained in:
Marc Khouzam 2023-12-23 14:44:40 -05:00
parent 1246b457b9
commit 70348785f7

19
.github/labeler.yml vendored
View file

@ -1,17 +1,24 @@
# changes to documentation generation # changes to documentation generation
"area/docs-generation": doc/**/* "area/docs-generation":
- changed-files:
- any-glob-to-any-file: 'doc/**'
# changes to the core cobra command # changes to the core cobra command
"area/cobra-command": "area/cobra-command":
- any: ['./cobra.go', './cobra_test.go', './*command*.go'] - changed-files:
- any-glob-to-any-file: ['./cobra.go', './cobra_test.go', './*command*.go']
# changes made to command flags/args # changes made to command flags/args
"area/flags": ./args*.go "area/flags":
- changed-files:
- any-glob-to-any-file: './args*.go'
# changes to Github workflows # changes to Github workflows
"area/github": .github/**/* "area/github":
- changed-files:
- any-glob-to-any-file: '.github/**'
# changes to shell completions # changes to shell completions
"area/shell-completion": "area/shell-completion":
- ./*completions* - changed-files:
- any-glob-to-any-file: './*completions*'