From 1a7fa2505179d61221b70b27dd4b508b1a7d804e Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 14 Nov 2023 14:32:51 +0100 Subject: [PATCH] CI/codespell: ignore subfolders (#11500) --- .github/workflows/codespell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 2cc48ecba..e7a579fa9 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -24,6 +24,6 @@ jobs: # Exit with 0 regardless of typos. only_warn: 1 # Skip non-English pages - skip: pages.*/*.md + skip: pages.*/*/*.md # Only check files in the PR path: ${{ steps.changed-files.outputs.all_changed_files }}