From dfbd334733639aed6e5658d470eb58e44db1a2b1 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Wed, 15 Jul 2026 09:01:41 -0700 Subject: [PATCH] Scope CI spell-check to README and HISTORY Match the template default (ptr727/ProjectTemplate#302): the CI cspell gate covered all markdown, which forces endlessly padding cspell.json for technical terms. Narrow it to README.md + HISTORY.md - the files every repo visitor sees; broad live spell-checking stays the editor extension's job. markdownlint stays repo-wide. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/validate-task.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate-task.yml b/.github/workflows/validate-task.yml index ecc96cb..8d034ed 100644 --- a/.github/workflows/validate-task.yml +++ b/.github/workflows/validate-task.yml @@ -51,7 +51,9 @@ jobs: - name: Spell check step uses: streetsidesoftware/cspell-action@de2a73e963e7443969755b648a1008f77033c5b2 # v8.4.0 with: - files: '**/*.md' + files: | + README.md + HISTORY.md incremental_files_only: false - name: Lint workflows step