Skip to content

Commit

Permalink
GH Action - Add more default path for the labeler
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry authored and nyalldawson committed Apr 7, 2022
1 parent 857c98f commit 6088563
Showing 1 changed file with 63 additions and 5 deletions.
68 changes: 63 additions & 5 deletions .github/labeler.yml
@@ -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/**/*',
]

0 comments on commit 6088563

Please sign in to comment.