Skip to content

Commit cfa0e25

Browse files
authored
Add labeler configuration for GitHub Actions
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 7d7ccb1 commit cfa0e25

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/labeler.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Apply the 'Core' label if any .csproj file or any file in the 'core/' directory is changed.
2+
Core:
3+
- changed-files:
4+
- any-glob-to-any-file:
5+
- '**/*.csproj'
6+
- 'core/**/*'
7+
- '**/.editorconfig'
8+
9+
# Apply the 'Config' label for any change to .filenesting.json configuration file.
10+
Config:
11+
- changed-files:
12+
- any-glob-to-any-file:
13+
- '**/.filenesting.json'
14+
15+
# Apply the 'Algorithms' label for any change within the 'Algorithms/' directory.
16+
Algorithms:
17+
- changed-files:
18+
- any-glob-to-any-file: 'Algorithms/**/*'
19+
20+
# Apply the 'Documentation' label for any change to a Markdown file.
21+
Documentation:
22+
- changed-files:
23+
- any-glob-to-any-file: '**/*.md'

0 commit comments

Comments
 (0)