From 281821fd48bbdbb66994f0ced726a30b4723e3b5 Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Tue, 21 Oct 2025 22:16:51 +0200 Subject: [PATCH] Exclude files that start from underscore for `lang-all` label in `labeler.yml` --- .github/labeler.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/labeler.yml b/.github/labeler.yml index c5b1f84f3..cdaefbf2d 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -17,6 +17,7 @@ lang-all: - docs/*/docs/** - all-globs-to-all-files: - '!docs/en/docs/**' + - '!docs/*/**/_*.md' - '!fastapi/**' - '!pyproject.toml'