We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da23158 commit 389a441Copy full SHA for 389a441
1 file changed
.github/workflows/typos.yml
@@ -8,8 +8,8 @@ env:
8
CLICOLOR: 1
9
10
jobs:
11
- spelling:
12
- name: Spell Check with Typos
+ typos-in-sources:
+ name: Check source files for typos
13
runs-on: ubuntu-latest
14
steps:
15
- name: Checkout Actions Repository
@@ -20,3 +20,17 @@ jobs:
20
uses: crate-ci/typos@f8a58b6b53f2279f71eb605f03a4ae4d10608f45 # v1.47.0
21
with:
22
config: ./typos.toml
23
+
24
+ pr-title-check:
25
+ name: Check PR Title for Typos
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - name: Write PR title to file
29
+ shell: bash
30
+ run: echo "$PR_TITLE" > /tmp/pr-title.txt
31
+ env:
32
+ PR_TITLE: ${{ github.event.pull_request.title }}
33
+ - name: Spell-check PR title
34
+ uses: crate-ci/typos@f8a58b6b53f2279f71eb605f03a4ae4d10608f45 # v1.47.0
35
+ with:
36
+ files: /tmp/pr-title.txt
0 commit comments