|
1 |
| -# .github/labeler.yml |
2 |
| - |
3 |
| -# Label PRs touching C++ source files |
| 1 | +# Labels for C++ source files |
4 | 2 | cpp:
|
5 |
| - - 'src/**/*.cpp' |
6 |
| - - 'ml_library_include/**/*.h' |
7 |
| - - 'ml_library_include/**/*.hpp' |
| 3 | + - "src/**/*.cpp" |
| 4 | + - "ml_library_include/**/*.hpp" |
| 5 | + - "ml_library_include/**/*.h" |
| 6 | + |
| 7 | +# Labels for headers and include files |
| 8 | +headers: |
| 9 | + - "ml_library_include/**/*.hpp" |
| 10 | + - "ml_library_include/**/*.h" |
| 11 | + |
| 12 | +# Labels for Doxygen-specific documentation |
| 13 | +doxygen: |
| 14 | + - "Doxyfile" |
| 15 | + - "docs/**/*.dox" |
| 16 | + - "docs/doxygen/**/*" |
8 | 17 |
|
9 |
| -# Label PRs touching documentation |
| 18 | +# Labels for general documentation |
10 | 19 | docs:
|
11 |
| - - 'docs/**/*' |
12 |
| - - '**/*.md' |
| 20 | + - "docs/**/*" |
| 21 | + - "**/*.md" |
| 22 | + - "README.md" |
| 23 | + - "LICENSE" |
13 | 24 |
|
14 |
| -# Label PRs touching tests |
| 25 | +# Labels for test files |
15 | 26 | tests:
|
16 |
| - - 'tests/**/*' |
| 27 | + - "tests/**/*.cpp" |
| 28 | + - "tests/**/*.hpp" |
| 29 | + - "tests/data/**/*" |
17 | 30 |
|
18 |
| -# Label PRs touching examples |
| 31 | +# Labels for examples |
19 | 32 | examples:
|
20 |
| - - 'examples/**/*' |
| 33 | + - "examples/**/*.cpp" |
21 | 34 |
|
22 |
| -# Label PRs touching GitHub workflows |
| 35 | +# Labels for build-related files |
| 36 | +build: |
| 37 | + - "CMakeLists.txt" |
| 38 | + - "build/**/*" |
| 39 | + |
| 40 | +# Labels for GitHub workflows |
23 | 41 | ci:
|
24 |
| - - '.github/workflows/**/*' |
| 42 | + - ".github/workflows/**/*" |
| 43 | + |
| 44 | +# Machine Learning Type Labels |
| 45 | + |
| 46 | +## Association Rule Learning |
| 47 | +association-rule-learning: |
| 48 | + - "src/association/**/*" |
| 49 | + - "ml_library_include/ml/association/**/*" |
| 50 | + - "examples/*AprioriExample.cpp" |
| 51 | + - "examples/*EclatExample.cpp" |
| 52 | + |
| 53 | +## Clustering |
| 54 | +clustering: |
| 55 | + - "src/clustering/**/*" |
| 56 | + - "ml_library_include/ml/clustering/**/*" |
| 57 | + - "examples/*HierarchicalClusteringExample.cpp" |
| 58 | + - "examples/*KMeansExample.cpp" |
| 59 | + |
| 60 | +## Neural Networks |
| 61 | +neural-networks: |
| 62 | + - "src/neural_network/**/*" |
| 63 | + - "ml_library_include/ml/neural_network/**/*" |
| 64 | + - "examples/*NeuralNetworkExample.cpp" |
| 65 | + |
| 66 | +## Regression |
| 67 | +regression: |
| 68 | + - "src/regression/**/*" |
| 69 | + - "ml_library_include/ml/regression/**/*" |
| 70 | + - "examples/*Regression*.cpp" |
| 71 | + - "examples/*PolynomialRegressionExample.cpp" |
| 72 | + - "examples/*SupportVectorRegressionExample.cpp" |
| 73 | + - "examples/*MultilinearRegressionExample.cpp" |
| 74 | + |
| 75 | +## Decision Trees |
| 76 | +decision-trees: |
| 77 | + - "src/tree/**/*" |
| 78 | + - "ml_library_include/ml/tree/**/*" |
| 79 | + - "examples/*DecisionTreeExample.cpp" |
| 80 | + - "examples/*RandomForestExample.cpp" |
| 81 | + |
| 82 | +# Labels for performance optimization |
| 83 | +performance: |
| 84 | + - "src/performance/**/*" |
| 85 | + - "**/optimization/**/*" |
| 86 | + |
| 87 | +# Labels for dependencies or third-party files |
| 88 | +dependencies: |
| 89 | + - "third_party/**/*" |
| 90 | + - "vendor/**/*" |
| 91 | + - "**/external/**/*" |
| 92 | + |
| 93 | +# Labels for style and formatting |
| 94 | +style: |
| 95 | + - ".clang-format" |
| 96 | + - ".editorconfig" |
| 97 | + - "src/**/*.cpp" |
| 98 | + - "ml_library_include/**/*.hpp" |
| 99 | + |
| 100 | +# Labels for configuration files |
| 101 | +config: |
| 102 | + - ".clang-format" |
| 103 | + - ".editorconfig" |
| 104 | + - "CMakeLists.txt" |
| 105 | + |
| 106 | +# Labels for refactoring |
| 107 | +refactor: |
| 108 | + - "**/refactor/**/*" |
| 109 | + |
| 110 | +# Labels for bug fixes |
| 111 | +bug: |
| 112 | + - "**/bug/**/*" |
| 113 | + - "**/fix/**/*" |
| 114 | + |
| 115 | +# Labels for new features |
| 116 | +feature: |
| 117 | + - "**/feature/**/*" |
| 118 | + - "src/feature/**/*" |
| 119 | + |
| 120 | +# Labels for experimental features |
| 121 | +experimental: |
| 122 | + - "src/experimental/**/*" |
| 123 | + - "tests/experimental/**/*" |
25 | 124 |
|
| 125 | +# Labels for data files |
| 126 | +data: |
| 127 | + - "tests/data/**/*" |
26 | 128 |
|
| 129 | +# Labels for logging-related files |
| 130 | +logging: |
| 131 | + - "**/logging/**/*" |
| 132 | + - "src/logging/**/*" |
0 commit comments