diff options
| author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2024-11-02 13:37:39 +0100 |
|---|---|---|
| committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2024-11-02 13:37:39 +0100 |
| commit | 3faeed07c4825d5c3ceb323e814e703d9262cd82 (patch) | |
| tree | b6a61e24ffa0fbb4af5f145c137f1f584aaba1bc /.github/workflows/spellcheck.yml | |
| parent | 735b04eff721a28e791714c0da4c8ac5726bfbcf (diff) | |
| parent | 6d1d1dac32841d5ca6ee51bb09b30a6c604b17e2 (diff) | |
| download | monitoring-plugins-3faeed07c4825d5c3ceb323e814e703d9262cd82.tar.gz | |
Merge branch 'master' into check_swap_again
Diffstat (limited to '.github/workflows/spellcheck.yml')
| -rw-r--r-- | .github/workflows/spellcheck.yml | 27 |
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 | --- | ||
| 2 | name: Spellcheck | ||
| 3 | |||
| 4 | on: | ||
| 5 | # Run for pushes on any branch | ||
| 6 | push: | ||
| 7 | branches: | ||
| 8 | - '*' | ||
| 9 | # Run for any PRs | ||
| 10 | pull_request: | ||
| 11 | |||
| 12 | jobs: | ||
| 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 | ||
