-
-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (28 loc) · 814 Bytes
/
check-typo.yml
File metadata and controls
35 lines (28 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# workflows/check-typo.yml
#
# Check Typo
# Check Typo using codespell.
name: Check Typo
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: check-typo-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
check-typo:
name: Check Typo using codespell
runs-on: ubuntu-latest
steps:
- name: Checkout Git Repository
uses: actions/checkout@v6
# The `skip` parameter is a total mess, read up before adding.
# https://github.com/codespell-project/codespell/issues/1915
- name: Check Typo using codespell
uses: codespell-project/actions-codespell@v2
with:
check_filenames: true
ignore_words_file: .codespellignore