Skip to content

Commit aac428b

Browse files
committed
Add GitHub Action for automated spelling error checks using codespell
Signed-off-by: PixelRobots <22979170+PixelRobots@users.noreply.github.com>
1 parent ebb638e commit aac428b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/codespell.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# GitHub Action to automate the identification of common misspellings in text files.
2+
# https://github.com/codespell-project/actions-codespell
3+
# https://github.com/codespell-project/codespell
4+
name: codespell
5+
on: [push, pull_request]
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
codespell:
11+
name: Check for spelling errors
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: codespell-project/actions-codespell@master
16+
with:
17+
check_filenames: true
18+
skip: ./.git,*.yml,*.yaml,./.github/workflows/codespell.yml,.git,*.png,*.jpg,*.svg,*.sum,*.ics
19+
ignore_words_list: AKS,aks,nd,aci,rouge

0 commit comments

Comments
 (0)