Skip to content

Commit

Permalink
Add spelling-all
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljurek authored Dec 11, 2024
1 parent 8df52d6 commit 6cb920c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/spelling-all.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check Spelling - All

on:
push:
branches:
- main
- RPSaaSMaster
- typespec-next

schedule:
# Run every day at 12:06 UTC
- cron: '6 12 * * *'
workflow_dispatch:

jobs:
check-spelling:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 1

- name: Run spelling check
run: |
./eng/common/spelling/Invoke-Cspell.ps1 `
-ScanGlobs 'specification/contosowidgetmanager/**' `
-CSpellConfigPath './cspell.json'

0 comments on commit 6cb920c

Please sign in to comment.