Skip to content

Commit

Permalink
GitHub Actions: fixed labeler
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Feb 5, 2024
1 parent 2582fb3 commit e57ff11
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 21 deletions.
56 changes: 39 additions & 17 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,62 @@
AI:
- src/xrAICore/**/*
- src/xrGame/ai/**/*
- changed-files:
- any-glob-to-any-file:
- src/xrAICore/**/*
- src/xrGame/ai/**/*

Documentation:
- docs/**/*
- changed-files:
- any-glob-to-any-file:
- docs/**/*

External (3rd party):
- Externals/**/*
- changed-files:
- any-glob-to-any-file:
- Externals/**/*

Game assets:
- res/**/*
- changed-files:
- any-glob-to-any-file:
- res/**/*

Infrastructure:
- .github/**/*
- changed-files:
- any-glob-to-any-file:
- .github/**/*

Physics:
- src/xrPhysics/**/*
- changed-files:
- any-glob-to-any-file:
- src/xrPhysics/**/*

Renderer:
- src/Layers/**/*
- changed-files:
- any-glob-to-any-file:
- src/Layers/**/*

DirectX:
- src/Layers/xrRenderDX*
- src/Layers/xrRenderPC_R1
- src/Layers/xrRenderPC_R2
- src/Layers/xrRenderPC_R4
- changed-files:
- any-glob-to-any-file:
- src/Layers/xrRenderDX*
- src/Layers/xrRenderPC_R1
- src/Layers/xrRenderPC_R2
- src/Layers/xrRenderPC_R4

OpenGL:
- src/Layers/xrRenderGL
- src/Layers/xrRenderPC_GL
- changed-files:
- any-glob-to-any-file:
- src/Layers/xrRenderGL
- src/Layers/xrRenderPC_GL

Sound:
- src/xrSound/**/*
- changed-files:
- any-glob-to-any-file:
- src/xrSound/**/*

UI:
- src/xrUICore/**/*
- src/xrGame/ui/**/*
- changed-files:
- any-glob-to-any-file:
- src/xrUICore/**/*
- src/xrGame/ui/**/*


4 changes: 3 additions & 1 deletion .github/labeler_on_new_pr.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
pending review:
- '**/*'
- changed-files:
- any-glob-to-any-file:
- '**/*'
8 changes: 6 additions & 2 deletions .github/labeler_on_pr_approved.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
pending review:
- '!**/*'
- changed-files:
- any-glob-to-any-file:
- '!**/*'

ready to merge:
- '**/*'
- changed-files:
- any-glob-to-any-file:
- '**/*'
4 changes: 3 additions & 1 deletion .github/labeler_on_pr_merged.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
ready to merge:
- '!**/*'
- changed-files:
- any-glob-to-any-file:
- '!**/*'

0 comments on commit e57ff11

Please sign in to comment.