Skip to content

Commit 2107a6a

Browse files
authored
Replace misspell-fixer with codespell for content folder
1 parent c5f3af4 commit 2107a6a

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

.codespell-ignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
STRAT
2+
MULTY
3+
EQUIL
4+
Dake´s

.github/workflows/spell-check.yml

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
1-
name: misspell
1+
name: codespell
22

3-
on:
4-
- push
3+
on: [push, pull_request]
54

65
jobs:
7-
build:
8-
6+
codespell:
97
runs-on: ubuntu-latest
10-
118
steps:
12-
- uses: actions/checkout@v3
13-
- uses: sobolevn/misspell-fixer-action@master
14-
with:
15-
options: '-rsvn content/'
16-
- uses: peter-evans/create-pull-request@v3
17-
with:
18-
token: ${{ secrets.GITHUB_TOKEN }}
19-
commit-message: 'Fixes by misspell-fixer'
20-
title: 'Typos fix by misspell-fixer'
21-
9+
- uses: actions/checkout@v4
10+
- uses: codespell-project/actions-codespell@v2
11+
with:
12+
path: content/
13+
ignore_words_file: .codespell-ignore

0 commit comments

Comments
 (0)