From c0d32b00ee5c7c92d6fc4640235ac36a209079ad Mon Sep 17 00:00:00 2001 From: subhamkrai Date: Tue, 25 Jun 2024 17:40:05 +0530 Subject: [PATCH] ci: skip config folder from running codespell ci Signed-off-by: subhamkrai --- .github/workflows/lint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 6205f87b..62a697e6 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -34,7 +34,7 @@ jobs: - name: codespell uses: codespell-project/actions-codespell@master with: - skip: .git,*.sum,vendor + skip: .git,*.sum,vendor,config ignore_words_list: AfterAll check_filenames: true check_hidden: true