From 37d6e71f7620d41248781c5067828c5afd254633 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Thu, 2 Nov 2023 11:43:39 -0500 Subject: [PATCH] github: fix codespell `skip` syntax for directories Summary: Codespell actually matches local files at the root of the repo with the `./` prefix, so without it the `skip` field won't match. Fix this for `./target` and `./.jj` directories. Signed-off-by: Austin Seipp Change-Id: Ibeafd7e400ff3bca9187d62241296060 --- .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 439520f76..c20151481 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -18,5 +18,5 @@ jobs: with: check_filenames: true check_hidden: true - skip: target,.jj,*.lock + skip: ./target,./.jj,*.lock ignore_words_list: crate,nd,nD