From c3dce46c5f7cad6bc3cc91cc2c711ac089f25923 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 8 May 2026 11:53:45 +0200 Subject: New upstream version 1.0.1+dfsg --- .github/workflows/codespell.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/codespell.yml (limited to '.github/workflows/codespell.yml') 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 +# 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 "INOUT" 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 -- cgit v1.2.3