diff --git a/.github/labeler.yml b/.github/labeler.yml index 52b51d9..02b5c13 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,30 +1,63 @@ documentation: -- "**/*.md" -- LICENSE -- "docs/**/*" -- "screenshots/**/*" +- changed-files: + - any-glob-to-any-file: + - "**/*.md" + - LICENSE + - "docs/**/*" + - "screenshots/**/*" dependencies: -- requirements.txt +- changed-files: + - any-glob-to-any-file: + - requirements.txt + - requirements-dev.txt publishing: -- check_version.py -- setup.py -- MANIFEST.in -- setup.cfg +- changed-files: + - any-glob-to-any-file: + - check_version.py + - setup.py + - MANIFEST.in + - setup.cfg github-actions: -- ".github/**/*" +- changed-files: + - any-glob-to-any-file: + - ".github/**/*" tests: -- "spam_detector_ai/test_and_tuning/**/*" +- changed-files: + - any-glob-to-any-file: + - "spam_detector_ai/test_and_tuning/**/*" models: -- "spam_detector_ai/models/**/*" +- changed-files: + - any-glob-to-any-file: + - "spam_detector_ai/models/**/*" training: -- "spam_detector_ai/training/**/*" -- "spam_detector_ai/data/**/*" -- "spam_detector_ai/classifiers/**/*" -- "spam_detector_ai/prediction/**/*" -- "spam_detector_ai/loading_and_processing/**/*" +- changed-files: + - any-glob-to-any-file: + - "spam_detector_ai/training/**/*" + - "spam_detector_ai/data/**/*" + - "spam_detector_ai/classifiers/**/*" + - "spam_detector_ai/prediction/**/*" + - "spam_detector_ai/loading_and_processing/**/*" + +feature: +- head-branch: ['^feature', 'feature'] + +bug: +- head-branch: ['^bug', 'bug'] + +fix: +- head-branch: ['^fix', 'fix'] + +bugfix: +- head-branch: ['^bugfix', 'bugfix'] + +chore: +- head-branch: ['^chore', 'chore'] + +maintenance: +- head-branch: ['^maintenance', 'maintenance'] \ No newline at end of file