Update concurrency.yml #33
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
# Add 'repo' label to any root file changes | |
repo: | |
- '*' | |
documental: | |
- '**/*.md' | |
# Add '@domain/core' label to any change within the 'core' package | |
'@domain/core': | |
- package/core/** | |
# Add 'test' label to any change to *.spec.js files within the source dir | |
test: | |
- src/**/*.spec.js | |
# Add 'source' label to any change to src files within the source dir EXCEPT for the docs sub-folder | |
source: | |
- any: ['src/**', '!src/docs/*'] | |
# Add 'frontend` label to any change to *.js files as long as the `main.js` hasn't changed | |
frontend: | |
- any: ['src/**/*.js'] | |
all: ['!src/main.js'] | |
# Add the 'AnyChange' label to any changes within the entire repository if the 'dot' option is set to 'false' | |
AnyChange: | |
- '**' | |
- '**/.*' | |
- '**/.*/**' | |
- '**/.*/**/.*' |