Skip to content

[release/8.0] Replace COMPlus with DOTNET prefix #1729

[release/8.0] Replace COMPlus with DOTNET prefix

[release/8.0] Replace COMPlus with DOTNET prefix #1729

Workflow file for this run

name: 'Spellcheck'
on:
pull_request:
paths: ['src/**', '**/*.md']
permissions:
pull-requests: read
jobs:
spellcheck:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
persist-credentials: false
- uses: streetsidesoftware/cspell-action@934c74da3775ac844ec89503f666f67efb427fed
name: Documentation spellcheck
if: ${{ !cancelled() }}
with:
files: '**/*.md'
inline: error
incremental_files_only: true
- uses: streetsidesoftware/cspell-action@934c74da3775ac844ec89503f666f67efb427fed
name: Resx spellcheck
if: ${{ !cancelled() }}
with:
files: 'src/**/*.resx'
inline: error
incremental_files_only: true
- uses: streetsidesoftware/cspell-action@934c74da3775ac844ec89503f666f67efb427fed
name: Source code spellcheck
if: ${{ !cancelled() }}
with:
files: 'src/**/*{.cs,.cpp,.h,.targets,.props,.*proj}'
inline: warning
incremental_files_only: true
# Do not cause the gate to fail if potential typos in source code are found.
# The signal-to-noise ratio here needs to be better understood first.
strict: false