Merge pull request #7272 from nextcloud/dependabot/github_actions/dot… #5743
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' | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| codespell: | |
| name: Check spelling | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/[email protected] | |
| - name: Check spelling | |
| uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 # v2 | |
| with: | |
| check_filenames: true | |
| check_hidden: true |