Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fail spellcheck job if spelling errors #1713

Merged
merged 3 commits into from
Jan 10, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cspell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# Notification level to use with inline reporting of spelling errors.
# Allowed values are: warning, error, none
# Default: warning
inline: warning
inline: error

# Reports flagged / forbidden words as errors.
# If true, errors will still be reported even if `inline` is "none"
Expand All @@ -48,10 +48,10 @@ jobs:
# Determines if the action should be failed if any spelling issues are found.
# Allowed values are: true, false
# Default: true
strict: false
strict: true

# Limit the files checked to the ones in the pull request or push.
incremental_files_only: ${{ github.event_name != 'workflow_dispatch' }}
incremental_files_only: false

# Path to `cspell.json`
config: 'cspell.json'
Expand Down
Loading