Skip to content

Commit 542363a

Browse files
committed
Make Vale spelling check non-blocking
Set continue-on-error: true for the spelling job so Vale can report findings without blocking merges. This prevents false positives on valid technical content like code identifiers and product names from stopping CI.
1 parent 9b54307 commit 542363a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,12 @@ jobs:
111111
spelling:
112112
name: Spelling
113113
runs-on: ubuntu-latest
114+
# Vale is advisory only: it surfaces spelling/style findings but must not block
115+
# merges, since it produces false positives on valid technical content (code
116+
# identifiers, product names, intentional ellipses). The job still runs and
117+
# reports its findings, but always reports success. Do not make this a required
118+
# check in branch protection.
119+
continue-on-error: true
114120
strategy:
115121
fail-fast: false
116122
matrix:

0 commit comments

Comments
 (0)