Skip to content

handle only deleted files in a <language> - pullrequest build (#32219) #55

handle only deleted files in a <language> - pullrequest build (#32219)

handle only deleted files in a <language> - pullrequest build (#32219) #55

Workflow file for this run

name: SpellCheck - All
on:
push:
branches:
- main
- RPSaaSMaster
schedule:
# Run every day at 12:06 UTC
- cron: "6 12 * * *"
workflow_dispatch:
jobs:
spellcheck:
name: SpellCheck
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Run spelling check
run: |
./eng/common/spelling/Invoke-Cspell.ps1 `
-ScanGlobs '**' `
-CSpellConfigPath './cspell.json' `
-SpellCheckRoot (Resolve-Path specification)
shell: pwsh