diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-01-02 21:36:13 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-01-02 22:34:49 +0100 |
commit | fb1168669875312155da984dd4915f130bed091e (patch) | |
tree | cd46c4a13f3de212b687651cb32de3c31ee79d73 | |
parent | 58e7e36deeb899146ecda71f2c2cda000269a305 (diff) | |
download | libfuse-fb1168669875312155da984dd4915f130bed091e.tar.gz |
.github/workflows/codespell.yml: checkpatch.pl needs to be skipped
checkpatch.pl has a list of mispelled words and the codespell test
fails on that.
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
-rw-r--r-- | .github/workflows/codespell.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 045bb20..3b771c1 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -24,3 +24,5 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Codespell uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1 + with: + skip: checkpatch.pl |