1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Add 'config/dependencies' label to any root file changes
config/dependencies:
- '*'
# Add 'circleci' label to any circleci configuration changes
circleci:
- '.circleci/*'
- '.circleci/**/*'
# Add 'husky' label to any husky configuration changes
husky:
- '.husky/*'
- '.husky/**/*'
# Add 'github' label to any github configuration changes
github:
- '.github/*'
- '.github/**/*'
# Add 'gh-workflows' label to any github workflow configuration changes
gh-workflows:
- '.github/workflows/*'
- '.github/workflows/**/*'
# Add 'scud_core' label to any change within the 'scud_core' directory
scud_core:
- 'scud_core/**/*'
- 'scud_core/*'
# Add 'assets' label to any change within the 'assets' directory
assets:
- 'assets/**/*'
- 'assets/*'
# Add 'scud' label to any change within the 'src' directory
scud:
- 'src/**/*'
- 'src/*'