GH Action - Add more default path for the labeler

This commit is contained in:
Etienne Trimaille 2022-04-06 17:46:37 +02:00 committed by Nyall Dawson
parent 857c98fb5d
commit 608856340e

68
.github/labeler.yml vendored
View File

@ -1,23 +1,81 @@
"3D":
- any: ['src/3d/**/*']
- any: [
'src/3d/**/*',
'src/app/3d/**/*',
]
"Annotations":
- any: ['src/core/annotations/**/*']
- any: [
'src/core/annotations/**/*',
'src/gui/annotations/**/*',
]
"DB Manager":
- any: ['python/plugins/db_manager/**/*']
"Expressions":
- any: ['src/core/expression/**/*']
"Form":
- any: [
'src/core/editform/**/*',
'src/gui/attributeformconfig',
]
"GRASS":
- any: ['python/plugins/grassprovider/**/*']
"GUI/UX":
- any: ['src/gui/**/*']
"Labeling":
- any: [
'src/app/labeling/**/*',
'src/core/labeling/**/*',
]
"Locator":
- any: ['src/core/locator/**/*']
- any: [
'src/core/locator/**/*',
'src/gui/locator/**/*',
]
"Mesh":
- any: [
'src/analysis/mesh/**/*',
'src/core/mesh/**/*',
'src/gui/mesh/**/*',
]
"Metasearch":
- any: ['python/plugins/MetaSearch/**/*']
"Point Clouds":
- any: [
'src/app/pointcloud/**/*',
'src/core/pointcloud/**/*',
'src/gui/pointcloud/**/*',
]
"PostGIS data provider":
- any: ['src/providers/postgres/**/*']
"Processing":
- any: [
'python/plugins/processing/**/*',
'src/analysis/**/*',
'src/core/processing/**/*',
'src/process/**/*'
]
"Server":
- any: ['src/server/**/*']
- any: [
'src/server/**/*',
'resources/server/**/*'
]
"Vector tiles":
- any: ['src/core/vectortile/**/*']
- any: [
'src/core/vectortile/**/*',
'src/gui/vectortile/**/*',
]