Skip to content

Commit

Permalink
Add typos workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
MFraters committed Feb 27, 2024
1 parent 6654dc8 commit 9b34243
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/typos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Spell Check with Typos
on:
push:
branches:
- 'main'
- 'GWB-*'
pull_request:

concurrency:
group: ${{ github.actor }}-${{ github.ref }}-typos
cancel-in-progress: true

jobs:
run:
name: Spell Check with Typos
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4

- name: Check for typos
uses: crate-ci/typos@master
with:
config: ./.typos.toml
write_changes: true

- uses: getsentry/action-git-diff-suggestions@main
with:
message: 'typos suggests the following change'

0 comments on commit 9b34243

Please sign in to comment.