From 641945b308a2faba1b1ef46f333bd6517ffd12dd Mon Sep 17 00:00:00 2001 From: Radu-Cristian Popa Date: Fri, 8 Dec 2023 19:20:16 +0200 Subject: [PATCH] Add labeler config --- .github/labeler.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000..c87b89bb --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,36 @@ +'area: background': + - any: + - changed-files: + - any-glob-to-any-file: 'src/background/**/*' + +'area: ci': + - any: + - changed-files: + - any-glob-to-any-file: '.github/**/*.yml' + +'area: content': + - any: + - changed-files: + - any-glob-to-any-file: 'src/content/**/*' + +'area: popup': + - any: + - changed-files: + - any-glob-to-any-file: 'src/popup/**/*' + +'area: documentation': + - any: + - changed-files: + - all-globs-to-any-file: + - '**/*.md' + - '!scripts/**/*.md' + +'area: scripts': + - any: + - changed-files: + - any-glob-to-any-file: 'scripts/**/*' + +'area: tests': + - any: + - changed-files: + - any-glob-to-any-file: '**/*.test.ts'