diff --git a/.github/labeler.yml b/.github/labeler.yml index f39be55d9..7b3d6675e 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,15 +1,28 @@ "CI/CD": - all: - - ".github/workflows/**" + - changed-files: + - any-glob-to-any-file: + - ".github/workflows/**" + - "tox.ini" + - ".yamllint.yml" "Maintenance": - all: - - ".github/**" + - changed-files: + - any-glob-to-any-file: + - ".github/*" + - ".github/ISSUE_TEMPLATE/*" "tests": - all: - - "tests/**" + - changed-files: + - any-glob-to-any-file: + - "tests/**" "docs": - any: - - "docs/**" + - changed-files: + - any-glob-to-any-file: + - "docs/**" + - "examples/**" + - "README.rst"