From b0e9368d0fe9943777191ed79cde6971e7c9c526 Mon Sep 17 00:00:00 2001 From: Seth Falco Date: Sun, 30 Oct 2022 11:50:00 +0100 Subject: [PATCH] ci: fix formatting and ignore package-lock.json (#9429) Signed-off-by: Seth Falco Signed-off-by: Seth Falco --- .github/workflows/codespell.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index f9757bb625..29bb5c74b0 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -8,18 +8,20 @@ jobs: steps: - uses: actions/checkout@v3 - + - name: Get changed files id: changed-files uses: tj-actions/changed-files@v26.1 with: # Ignore all other languages except English - files_ignore: pages.*/*/* - + files_ignore: | + pages.*/*/* + package-lock.json + - uses: codespell-project/actions-codespell@master with: ignore_words_file: .github/codespell-ignore # Exit with 0 regardless of typos. - only_warn: 1 + only_warn: 1 # Only check files in the PR - path: ${{ steps.changed-files.outputs.all_changed_files }} + path: ${{ steps.changed-files.outputs.all_changed_files }}