Skip to content

Commit 26b5172

Browse files
committed
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.
1 parent 18bfd1e commit 26b5172

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/labeler.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,12 @@
181181
- any-glob-to-any-file:
182182
- 'lib/matplotlib/markers.py*'
183183
"topic: mpl_toolkit":
184-
- changed-files:
185-
- any-glob-to-any-file:
186-
- 'lib/mpl_toolkits/**'
187-
- all-globs-to-all-files:
188-
- '!lib/mpl_toolkits/mplot3d/**'
184+
- all:
185+
- changed-files:
186+
- any-glob-to-any-file:
187+
- 'lib/mpl_toolkits/**'
188+
- all-globs-to-all-files:
189+
- '!lib/mpl_toolkits/mplot3d/**'
189190
"topic: mplot3d":
190191
- changed-files:
191192
- any-glob-to-any-file:

0 commit comments

Comments
 (0)