From c2a18714a5797cfc10fea730b8ea4d849e0d7c28 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Fri, 10 Nov 2023 04:38:54 +0100 Subject: [PATCH] CI/codespell: ignore non-English pages (#11430) --- .github/workflows/codespell.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index e33cf602c3..2cc48ecba4 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -23,5 +23,7 @@ jobs: ignore_words_file: .github/codespell-ignore # Exit with 0 regardless of typos. only_warn: 1 + # Skip non-English pages + skip: pages.*/*.md # Only check files in the PR path: ${{ steps.changed-files.outputs.all_changed_files }}