We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0d93f87 + d32218d commit 54d4b88Copy full SHA for 54d4b88
.github/workflows/typos.yml
@@ -0,0 +1,25 @@
1
+name: "Typos"
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ # The branches below must be a subset of the branches above
9
10
11
+ schedule:
12
+ - cron: '45 9 * * 1'
13
14
+jobs:
15
+ run:
16
+ name: Spell Check with Typos
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Checkout Actions Repository
20
+ uses: actions/checkout@v2
21
22
+ - name: Use custom config file
23
+ uses: crate-ci/typos@master
24
+ with:
25
+ config: ./.typos.toml
.typos.toml
@@ -0,0 +1,2 @@
+[files]
+extend-exclude = ["go.sum", "package-lock.json"]
0 commit comments