From 2547b5a46c87d94c2437fe64f53a6618e3caa376 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 16 Nov 2023 04:20:51 +0100 Subject: [PATCH] CI/codespell: skip non-English pages (#11515) * codespell: skip non-English pages * CI/codespell: add non-English contributing-guides to skip --- .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 e7a579fa95..70a53323fb 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,./contributing-guides/style-guide.*.md # Only check files in the PR path: ${{ steps.changed-files.outputs.all_changed_files }}