-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Marc Khouzam <[email protected]>
- Loading branch information
1 parent
1246b45
commit 7034878
Showing
1 changed file
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,24 @@ | ||
# 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 | ||
"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 | ||
"area/flags": ./args*.go | ||
"area/flags": | ||
- changed-files: | ||
- any-glob-to-any-file: './args*.go' | ||
|
||
# changes to Github workflows | ||
"area/github": .github/**/* | ||
"area/github": | ||
- changed-files: | ||
- any-glob-to-any-file: '.github/**' | ||
|
||
# changes to shell completions | ||
"area/shell-completion": | ||
- ./*completions* | ||
|
||
- changed-files: | ||
- any-glob-to-any-file: './*completions*' |