From 6bea82a6e399a6ae4f1aea845fe38480c258095b Mon Sep 17 00:00:00 2001 From: Aleksei Stepanov Date: Mon, 11 Dec 2023 08:47:54 +0100 Subject: [PATCH] Maintenance: update labeler rules to 5.0 --- .github/labeler.yml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) 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"