Add two enums Support Channel and ChatConversationStatus to enable Pe… #61
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: SpellCheck - All | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - RPSaaSMaster | |
| - RPSaaSCanary | |
| pull_request: | |
| branches: | |
| - main | |
| - RPSaaSMaster | |
| - RPSaaSCanary | |
| paths: | |
| - "eng/common/spelling/**" | |
| - "cspell.json" | |
| schedule: | |
| # Run every day at 12:06 UTC | |
| - cron: "6 12 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| spellcheck: | |
| name: SpellCheck | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| # workaround streetsidesoftware/cspell#8778 | |
| - name: Setup Node 22 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - name: Run spelling check | |
| run: | | |
| $allFiles = Get-ChildItem -Path specification -Recurse -File | |
| Write-Host "Found $($allFiles.Count) files to check" | |
| ./eng/common/spelling/Invoke-Cspell.ps1 ` | |
| -FileList $allFiles.FullName ` | |
| -CSpellConfigPath './cspell.json' ` | |
| -SpellCheckRoot (Resolve-Path specification) | |
| shell: pwsh |