Codespell workflow for src and few other folders
What changed, and why it matters
This commit adds a GitHub Actions workflow that automatically checks for spelling mistakes in source code and documentation folders. It is a code-quality and documentation improvement with no security relevance.
No security action required. Treat as routine CI/code-quality maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit introduces .github/workflows/codespell.yml, which invokes LedgerHQ/ledger-app-workflows/.github/workflows/reusable_spell_check.yml@v1 on push to master/main/develop and on pull requests. It passes src_path: src, bitcoin_client, bitcoin_client_js, bitcoin_client_rs, doc and an ignore_words_list. There are no code, build, cryptographic, or permission changes.
Changed components
.github/workflows/codespell.ymlInspect captured patch +18 / −0
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644
index 0000000..5f3b2df
--- /dev/null
+++ b/.github/workflows/codespell.yml
@@ -0,0 +1,18 @@
+name: Misspellings CI
+
+on:
+ workflow_dispatch:
+ push:
+ branches:
+ - master
+ - main
+ - develop
+ pull_request:
+
+jobs:
+ misspell:
+ name: Check misspellings
+ uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_spell_check.yml@v1
+ with:
+ src_path: src, bitcoin_client, bitcoin_client_js, bitcoin_client_rs, doc
+ ignore_words_list: usig,Bu,fpr
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.