From 4090d0809834070fbdda0d2e5c4b9c0db43e2441 Mon Sep 17 00:00:00 2001 From: Christopher Atkins Date: Fri, 12 Jan 2024 15:23:32 -0500 Subject: [PATCH] fix cspell config to ensure full spellcheck --- .github/workflows/spellcheck.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/spellcheck.yaml b/.github/workflows/spellcheck.yaml index 7a7a619..f194888 100644 --- a/.github/workflows/spellcheck.yaml +++ b/.github/workflows/spellcheck.yaml @@ -1,7 +1,11 @@ name: 'Check spelling' on: # rebuild any PRs and main branch changes - pull_request: push: + branches: + - 1.0.0* + pull_request: + branches: + - 1.0.0* jobs: spellcheck: # run the action @@ -10,10 +14,11 @@ jobs: - uses: actions/checkout@v4 - uses: streetsidesoftware/cspell-action@v5 with: + incremental_files_only: false + config: 'cspell.json' # eventually we intend to fail the build on spelling errors # so we restrict this to the docs folder root: './docs' # only warn for now inline: warning # error strict: false # true fails the build - config: 'cspell.json'