diff options
| author | Jörg Frings-Fürst <debian@jff-webhsoting.net> | 2026-05-08 11:54:15 +0200 |
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhsoting.net> | 2026-05-08 11:54:15 +0200 |
| commit | 9d62028a6e8eced2ae6fabedd2b6317e9519b00d (patch) | |
| tree | 1d8458cb6627ccfc673f791c5f0db45f9c06f7e0 /.github/workflows/codespell.yml | |
| parent | a1dac799b819ba356a2faff3a98d7f5f076c24b6 (diff) | |
| parent | 5177d88bf591522d1b934e24221e16e02cd1592b (diff) | |
Merge branch 'feature/upstream' into develop
Diffstat (limited to '.github/workflows/codespell.yml')
| -rw-r--r-- | .github/workflows/codespell.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 0000000..61af9fb --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,28 @@ +# Copyright (C) 2025 Sebastian Pipping <sebastian@pipping.org> +# Licensed under the MIT license + +name: Enforce codespell-clean spelling + +on: + pull_request: + push: + schedule: + - cron: '0 4 * * 5' # Every Friday at 4am + workflow_dispatch: + +permissions: + contents: read + +jobs: + checks: + name: Enforce codespell-clean spelling + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 # v2.2 + with: + # "inout" is from "<b>INOUT</b>" markers + # "puls" is for last name "Puls" in files THANKS and ChangeLog + # "worstcase" is from variable name "worstCase" in file src/UriQuery.c + ignore_words_list: inout,puls,worstcase + skip: ./doc/rfc1866.htm,./doc/rfc3513.htm,./doc/rfc3986.htm |
