123456789101112131415161718192021222324252627282930313233343536 |
- name: Codespell
- on:
- pull_request:
- # Ignore all other languages except English
- paths-ignore:
- - 'pages.*/*/*'
- - 'contributing-guides/style-guide.*.md'
- - 'package-lock.json'
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- - name: Get changed files
- id: changed-files
- uses: tj-actions/changed-files@v45.0.5
- with:
- # Ignore all other languages except English
- files_ignore: |
- pages.*
- *
|