Migrate spelling-0.0.19 changes from main

This commit is contained in:
Dustin L. Howett 2021-06-06 15:32:21 +02:00
parent 73fbac620c
commit e9b2e09e4b
3 changed files with 274 additions and 33 deletions

View file

@ -25,6 +25,7 @@ ignore$
\.png$ \.png$
\.woff$ \.woff$
\.zip$ \.zip$
^doc/devdocs/akaLinks\.md$
^src/common/logger/logger\.vcxproj\.filters$ ^src/common/logger/logger\.vcxproj\.filters$
^src/common/notifications/BackgroundActivatorDLL/BackgroundActivator\.vcxproj\.filters$ ^src/common/notifications/BackgroundActivatorDLL/BackgroundActivator\.vcxproj\.filters$
^src/common/notifications/BackgroundActivatorDLL/cpp\.hint$ ^src/common/notifications/BackgroundActivatorDLL/cpp\.hint$
@ -40,3 +41,4 @@ ignore$
^\.github/ ^\.github/
^\.github/actions/spell-check/ ^\.github/actions/spell-check/
^\.gitmodules$ ^\.gitmodules$
(?:^|/)WindowsSettings\.json$

File diff suppressed because it is too large Load diff

View file

@ -1,21 +1,22 @@
# spelling.yml is blocked per https://github.com/check-spelling/check-spelling/security/advisories/GHSA-g86g-chm8-7r2p
name: Spell checking name: Spell checking
on: on:
pull_request_target: pull_request_target:
push: push:
jobs: jobs:
build: spelling:
name: Spell checking name: Spell checking
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: checkout-merge - name: checkout-merge
if: "contains(github.event_name, 'pull_request')" if: "contains(github.event_name, 'pull_request')"
uses: actions/checkout@v2.0.0 uses: actions/checkout@v2
with: with:
ref: refs/pull/${{github.event.pull_request.number}}/merge ref: refs/pull/${{github.event.pull_request.number}}/merge
- name: checkout - name: checkout
if: "!contains(github.event_name, 'pull_request')" if: "!contains(github.event_name, 'pull_request')"
uses: actions/checkout@v2.0.0 uses: actions/checkout@v2
- uses: check-spelling/check-spelling@v0.0.18 - uses: check-spelling/check-spelling@v0.0.19
with: with:
config: .github/actions/spell-check config: .github/actions/spell-check