diff options
author | sudlud <sudlud@users.noreply.github.com> | 2024-06-04 20:38:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-04 20:38:49 +0200 |
commit | 03879617d8b2399969ccfb7bcaf26be19e3371ad (patch) | |
tree | 58a50578a5e142e8b634d5d9fe8498004228bfc3 | |
parent | 4909a313283f45a22df02f5174252fc3062a355f (diff) |
fix(CI): add missing ticks to labeler.yml file paths (#18995)
-rw-r--r-- | .github/labeler.yml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml index c41c0b22ba..cc289cd5e4 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,14 +1,14 @@ file-cpp: - changed-files: - any-glob-to-any-file: - - src/**/*.cpp - - src/**/*.h - - deps/**/*.cpp - - deps/**/*.h + - 'src/**/*.cpp' + - 'src/**/*.h' + - 'deps/**/*.cpp' + - 'deps/**/*.h' DB: - changed-files: - - any-glob-to-any-file: data/**/*.sql + - any-glob-to-any-file: 'data/**/*.sql' CORE: - all: @@ -21,34 +21,34 @@ CORE: Script: - changed-files: - any-glob-to-any-file: - - src/server/scripts/**/*.cpp - - src/server/scripts/**/*.h + - 'src/server/scripts/**/*.cpp' + - 'src/server/scripts/**/*.h' UnitTests: - changed-files: - - any-glob-to-any-file: src/test/**/* + - any-glob-to-any-file: 'src/test/**/*' Documentation: - changed-files: - - any-glob-to-any-file: ./*.md + - any-glob-to-any-file: './*.md' Bash: - changed-files: - any-glob-to-any-file: - - ./*.sh - - apps/**/*.sh - - conf/**/*.sh - - deps/**/*.sh - - modules/**/*.sh + - './*.sh' + - 'apps/**/*.sh' + - 'conf/**/*.sh' + - 'deps/**/*.sh' + - 'modules/**/*.sh' CMake: - changed-files: - - any-glob-to-any-file: ./*.cmake + - any-glob-to-any-file: './*.cmake' Workflow: - changed-files: - - any-glob-to-any-file: .github/workflows/* + - any-glob-to-any-file: '.github/workflows/*' Batch: - changed-files: - - any-glob-to-any-file: apps/**/*.bat + - any-glob-to-any-file: 'apps/**/*.bat' |