CI: add missing command line args to codespell.py. (#21127)

* CI: add missing command line args to codespell.py.

* CI: alter files parameters to codespell.py.

* CI: update verbose flag in codespell to be boolean.
This commit is contained in:
Jackson Oursland
2025-05-04 14:56:42 -07:00
committed by GitHub
parent 93ea68a23b
commit 2070dc9633
2 changed files with 24 additions and 2 deletions

View File

@@ -305,7 +305,7 @@ jobs:
continue-on-error: ${{ inputs.codespellFailSilent }}
run: |
python3 tools/lint/codespell.py \
--files "${{ inputs.changedFiles }}" \
--files ${{ inputs.changedFiles }} \
--ignore-words "${{ inputs.listIgnoredMisspelling }}" \
--skip "${{ inputs.spellingIgnore }}" \
--log-dir "${{ env.logdir }}" \