Scope CI spell-check to README and HISTORY - #512
Merged
Conversation
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) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR narrows the CI spell-check gate in .github/workflows/validate-task.yml so cspell runs only against the two primary visitor-facing docs (README.md and HISTORY.md), while keeping markdownlint repo-wide.
Changes:
- Update the
cspell-actionfilesinput from**/*.mdto a multiline list containingREADME.mdandHISTORY.md. - Leave the existing repo-wide Markdown linting (
markdownlintglobs**/*.md) unchanged.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #512 +/- ##
========================================
Coverage 57.28% 57.28%
========================================
Files 15 15
Lines 1386 1386
Branches 89 89
========================================
Hits 794 794
Misses 573 573
Partials 19 19 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Narrows the CI cspell (spell-check) step in
.github/workflows/validate-task.ymlfrom all markdown (**/*.md) to justREADME.md+HISTORY.md.Matches the template default in ptr727/ProjectTemplate#302: spell-checking every markdown file forces endlessly padding
cspell.jsonwith technical terms. Restricting the gate to the two files every repo visitor sees keeps CI meaningful, while broad live spell-checking stays the editor extension's job.**/*.md) - unchanged.actionlint(rhysd/actionlint:latest) is clean, no findings.🤖 Generated with Claude Code