forked from microsoft/semantic-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (27 loc) · 719 Bytes
/
Copy pathtypos.yaml
File metadata and controls
31 lines (27 loc) · 719 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
# Check pull requests for typos.
#
# Configuration: .github/_typos.toml
#
# Info: https://github.com/marketplace/actions/typos-action
# Local install: brew install typos-cli
# Local install: conda install typos
# Local run: typos -c .github/_typos.toml
name: Spell Check
on:
workflow_dispatch:
pull_request:
branches: ["main", "feature*"]
jobs:
run:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Use custom config file
uses: crate-ci/[email protected]
with:
config: .github/_typos.toml
write_changes: false