HOLD: Add docs for status 13 and status 14 added in PR#1083 #99
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Pre-commit checks" | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| codespell: | |
| name: "Check for spelling errors" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - uses: codespell-project/actions-codespell@v2 | |
| with: | |
| check_filenames: true | |
| ignore_words_file: ./.codespellignore | |
| skip: "*.pdf" | |
| # When using this Action in other repos, the --skip option below can be removed | |
| # and the .codespellignore file can be used to ignore files or words. |