Add GitHub Action to check spelling (#3591)
Signed-off-by: Aaron Raimist <aaron@raim.ist>pull/977/head
parent
d2fd90579b
commit
01cd41de68
@ -0,0 +1,12 @@
|
||||
[files]
|
||||
extend-exclude = ["/themes", "/attic", "/data-definitions", "*.css", "package-lock.json"]
|
||||
|
||||
[default]
|
||||
check-filename = true
|
||||
|
||||
[default.extend-identifiers]
|
||||
au1ba7o = "au1ba7o"
|
||||
|
||||
[default.extend-words]
|
||||
Appy = "Appy"
|
||||
fo = "fo"
|
@ -0,0 +1,15 @@
|
||||
name: Spell Check
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
run:
|
||||
name: Spell Check with Typos
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Actions Repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Check spelling of proposals
|
||||
uses: crate-ci/typos@master
|
||||
with:
|
||||
config: ${{github.workspace}}/.github/_typos.toml
|
@ -1 +1 @@
|
||||
Explicity mention RFC5870 in the definition of `m.location` events
|
||||
Explicitly mention RFC5870 in the definition of `m.location` events
|
||||
|
Loading…
Reference in New Issue