generated from kyegomez/Python-Package-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d196c3
commit 559fb11
Showing
1 changed file
with
41 additions
and
8 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,12 +1,45 @@ | ||
# this is a config file for the github action labeler | ||
|
||
# Add 'label1' to any changes within 'example' folder or any subfolders | ||
example_change: | ||
- example/** | ||
# Add 'root' label to any root file changes | ||
# Quotation marks are required for the leading asterisk | ||
root: | ||
- changed-files: | ||
- any-glob-to-any-file: '*' | ||
|
||
# Add 'label2' to any file changes within 'example2' folder | ||
example2_change: example2/* | ||
# Add 'Tests' label to any file changes within 'docs' folder | ||
Tests: | ||
- changed-files: | ||
- any-glob-to-any-file: tests/* | ||
|
||
# Add label3 to any change to .txt files within the entire repository. Quotation marks are required for the leading asterisk | ||
text_files: | ||
- '**/*.txt' | ||
# Add 'Documentation' label to any file changes within 'docs' or 'guides' folders | ||
ghactions: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- .github/workflows/* | ||
- .github/* | ||
|
||
# Add 'Scripts' label to any file changes within 'docs' folder | ||
Scripts: | ||
- changed-files: | ||
- any-glob-to-any-file: scripts/* | ||
|
||
## Equivalent of the above mentioned configuration using another syntax | ||
Documentation: | ||
- changed-files: | ||
- any-glob-to-any-file: ['docs/*', 'guides/*'] | ||
- any-glob-to-any-file: '**/*.md' | ||
|
||
# Add 'source' label to any change to src files within the source dir EXCEPT for the docs sub-folder | ||
source: | ||
- all: | ||
- changed-files: | ||
- any-glob-to-any-file: 'src/**/*' | ||
- all-globs-to-all-files: '!src/docs/*' | ||
|
||
# Add 'feature' label to any PR where the head branch name starts with `feature` or has a `feature` section in the name | ||
feature: | ||
- head-branch: ['^feature', 'feature'] | ||
|
||
# Add 'release' label to any PR that is opened against the `main` branch | ||
release: | ||
- base-branch: 'main' |