From f949b51c36b17c93dd64124e3a633a1b79a82656 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 config folder are auto generated and there is no need to run codespell on auto generated files. 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