chore(deps): bump helm/kind-action from 50ea670a058121270d63a63b4f1e361d722932e4 to 7cd7463a0995e35ab5d0f2c119f892514f3a3778 #387
Workflow file for this run
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: Codespell | |
| # Documentation: | |
| # https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
| on: pull_request | |
| jobs: | |
| codespell: | |
| name: Codespell | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v5 | |
| - name: Codespell | |
| uses: codespell-project/actions-codespell@master | |
| with: | |
| skip: .git | |
| check_filenames: true | |
| check_hidden: true |