summaryrefslogtreecommitdiffstats
path: root/.github/workflows/spellcheck.yml
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2024-11-02 13:37:39 +0100
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2024-11-02 13:37:39 +0100
commit3faeed07c4825d5c3ceb323e814e703d9262cd82 (patch)
treeb6a61e24ffa0fbb4af5f145c137f1f584aaba1bc /.github/workflows/spellcheck.yml
parent735b04eff721a28e791714c0da4c8ac5726bfbcf (diff)
parent6d1d1dac32841d5ca6ee51bb09b30a6c604b17e2 (diff)
downloadmonitoring-plugins-3faeed07c4825d5c3ceb323e814e703d9262cd82.tar.gz
Merge branch 'master' into check_swap_again
Diffstat (limited to '.github/workflows/spellcheck.yml')
-rw-r--r--.github/workflows/spellcheck.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml
new file mode 100644
index 00000000..72f7c7eb
--- /dev/null
+++ b/.github/workflows/spellcheck.yml
@@ -0,0 +1,27 @@
1---
2name: Spellcheck
3
4on:
5 # Run for pushes on any branch
6 push:
7 branches:
8 - '*'
9 # Run for any PRs
10 pull_request:
11
12jobs:
13 codespell:
14 name: codespell
15 strategy:
16 fail-fast: false
17 runs-on: ubuntu-latest
18 steps:
19 - name: Checkout
20 uses: actions/checkout@v4
21 - name: Codespell
22 uses: codespell-project/actions-codespell@v2
23 with:
24 skip: "./.git,./.gitignore,./ABOUT-NLS,./gl,./tools/squid.conf,./build-aux/ltmain.sh,THANKS.in"
25 ignore_words_list: allright,gord,didi,hda,nd,alis,clen,scrit,ser,fot,te,parm,isnt,consol,oneliners,esponse,slac
26 check_filenames: true
27 check_hidden: true