Skip to content

Commit 5c87dc0

Browse files
authored
Merge pull request #1986 from ipfs/add-languagetool
review prs with languagetool
2 parents d57b24a + a98b06b commit 5c87dc0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Check Spelling
2+
on:
3+
pull_request:
4+
paths:
5+
- 'docs/**/*.md'
6+
jobs:
7+
languagetool:
8+
name: languagetool
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Check Spelling
13+
uses: reviewdog/action-languagetool@v1
14+
with:
15+
github_token: ${{ secrets.github_token }}
16+
reporter: github-pr-review
17+
level: info
18+
patterns: 'docs/**/*.md'
19+

0 commit comments

Comments
 (0)