File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Vale documentation checks
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ paths :
8+ - ' docs/**' # Only run on changes to the docs directory
9+
10+ workflow_dispatch :
11+ # Manual trigger
12+
13+
14+ concurrency :
15+ group : ${{ github.workflow }}-${{ github.ref }}
16+ cancel-in-progress : true
17+
18+ jobs :
19+ vale :
20+ runs-on : ubuntu-latest
21+ steps :
22+ - uses : actions/checkout@v4
23+ - uses : errata-ai/vale-action@v2.1.1
24+ with :
25+ working-directory : " docs"
26+ fetch-depth : 0
Original file line number Diff line number Diff line change 1+ # Core settings appear at the top
2+ # (the "global" section).
3+ MinAlertLevel = warning
4+ Packages = write-good, Readability
5+
6+ # [formats]
7+ # Format associations appear under
8+ # the optional "formats" section.
9+
10+ [*.md]
11+ # Format-specific settings appear
12+ # under a user-provided "glob"
13+ # pattern.
14+ BasedOnStyles = Vale, write-good, Readability
15+ # Disable Vale spellcheck. We already have spellcheck at home (in Make).
16+ Vale.Spelling = NO
17+
You can’t perform that action at this time.
0 commit comments