fix(CI): add missing ticks to labeler.yml file paths (#18995)

This commit is contained in:
sudlud
2024-06-04 20:38:49 +02:00
committed by GitHub
parent 4909a31328
commit 03879617d8

34
.github/labeler.yml vendored
View File

@@ -1,14 +1,14 @@
file-cpp: file-cpp:
- changed-files: - changed-files:
- any-glob-to-any-file: - any-glob-to-any-file:
- src/**/*.cpp - 'src/**/*.cpp'
- src/**/*.h - 'src/**/*.h'
- deps/**/*.cpp - 'deps/**/*.cpp'
- deps/**/*.h - 'deps/**/*.h'
DB: DB:
- changed-files: - changed-files:
- any-glob-to-any-file: data/**/*.sql - any-glob-to-any-file: 'data/**/*.sql'
CORE: CORE:
- all: - all:
@@ -21,34 +21,34 @@ CORE:
Script: Script:
- changed-files: - changed-files:
- any-glob-to-any-file: - any-glob-to-any-file:
- src/server/scripts/**/*.cpp - 'src/server/scripts/**/*.cpp'
- src/server/scripts/**/*.h - 'src/server/scripts/**/*.h'
UnitTests: UnitTests:
- changed-files: - changed-files:
- any-glob-to-any-file: src/test/**/* - any-glob-to-any-file: 'src/test/**/*'
Documentation: Documentation:
- changed-files: - changed-files:
- any-glob-to-any-file: ./*.md - any-glob-to-any-file: './*.md'
Bash: Bash:
- changed-files: - changed-files:
- any-glob-to-any-file: - any-glob-to-any-file:
- ./*.sh - './*.sh'
- apps/**/*.sh - 'apps/**/*.sh'
- conf/**/*.sh - 'conf/**/*.sh'
- deps/**/*.sh - 'deps/**/*.sh'
- modules/**/*.sh - 'modules/**/*.sh'
CMake: CMake:
- changed-files: - changed-files:
- any-glob-to-any-file: ./*.cmake - any-glob-to-any-file: './*.cmake'
Workflow: Workflow:
- changed-files: - changed-files:
- any-glob-to-any-file: .github/workflows/* - any-glob-to-any-file: '.github/workflows/*'
Batch: Batch:
- changed-files: - changed-files:
- any-glob-to-any-file: apps/**/*.bat - any-glob-to-any-file: 'apps/**/*.bat'