CI/codespell: only run on changed English files (#11518)

pull/23/head
Sebastiaan Speck 2023-11-16 20:37:37 +01:00 committed by GitHub
parent e8b6460f33
commit 1159595665
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,12 @@
name: Codespell
on: ['pull_request']
on:
pull_request:
# Ignore all other languages except English
paths-ignore:
- 'pages.*/*/*'
- 'contributing-guides/style-guide.*.md'
- 'package-lock.json'
jobs:
build:
@ -16,6 +22,7 @@ jobs:
# Ignore all other languages except English
files_ignore: |
pages.*/*/*
contributing-guides/style-guide.*.md
package-lock.json
- uses: codespell-project/actions-codespell@v2