Looking at the logs for the failed run of a very simple spelling.yml workflow file:
name: Spelling
on: [pull_request, workflow_dispatch]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
with:
skip: c/samples
I see:
Running codespell on '' with the following options...
...
Skipping 'c/samples'
...
Resulting CLI options --skip c/samples
And so the job chokes on files under c/samples. Looking at the codespell repo, it seems like the flag should actually be --skip="c/samples", not --skip c/samples.
Looking at the logs for the failed run of a very simple
spelling.ymlworkflow file:I see:
And so the job chokes on files under
c/samples. Looking at thecodespellrepo, it seems like the flag should actually be--skip="c/samples", not--skip c/samples.