Skip to content

Commit

Permalink
labeler v5 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mryzhov committed Feb 20, 2024
1 parent 18c1601 commit d99f291
Showing 1 changed file with 30 additions and 16 deletions.
46 changes: 30 additions & 16 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,35 @@
'category: CI':
- '.github/**/*'
- 'Jenkinsfile'
CI:
- any:
- changed-files:
- any-glob-to-any-file:
- '.github/**/*
- 'Jenkinsfile'

'category: tokenizers_cpp':
- 'src/**/*'
tokenizers_cpp:
- any:
- changed-files:
- any-glob-to-any-file: 'src/**/*'

'category: tokenizers_py':
- 'python/**/*'
tokenizers_py:
- any:
- changed-files:
- any-glob-to-any-file: 'python/**/*'

'category: tokenizers_test':
- 'tests/**/*'
tokenizers_test:
- any:
- changed-files:
- any-glob-to-any-file: 'tests/**/*'

'category: build':
- '**/CMakeLists.txt'
- '**/*.toml'
- '**/*.cmake'
build:
- any:
- changed-files:
- any-glob-to-any-file:
- '**/CMakeLists.txt'
- '**/*.toml'
- '**/*.cmake'

'dependencies':
- '**/requirement*.txt'
- any: ['!**/CMakeLists.txt']
dependencies:
- any:
- changed-files:
- any-glob-to-any-file: '**/requirement*.txt'
- all-globs-to-all-files: '!**/CMakeLists.txt'

0 comments on commit d99f291

Please sign in to comment.