From 26b517238d28d59487cbe0e9ec3edad636659d4e Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Fri, 12 Jan 2024 20:52:09 -0500 Subject: [PATCH] ci: Fix mpl_toolkits label The default is `any`, so the negated glob matches almost all PRs accidentally. So we need to wrap this in an `all` so it's just toolkits-but-not-mplot3d. --- .github/labeler.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index a3370aaf1e81..8d899258a3e7 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -181,11 +181,12 @@ - any-glob-to-any-file: - 'lib/matplotlib/markers.py*' "topic: mpl_toolkit": - - changed-files: - - any-glob-to-any-file: - - 'lib/mpl_toolkits/**' - - all-globs-to-all-files: - - '!lib/mpl_toolkits/mplot3d/**' + - all: + - changed-files: + - any-glob-to-any-file: + - 'lib/mpl_toolkits/**' + - all-globs-to-all-files: + - '!lib/mpl_toolkits/mplot3d/**' "topic: mplot3d": - changed-files: - any-glob-to-any-file: