Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/spelling/expect/usernames.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
denelon
JanDeDobbeleer
Dobbeleer
5 changes: 1 addition & 4 deletions .github/actions/spelling/patterns.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@
# Variations on DSC
[Dd][Ss][Cc]

# Variations on DSC
[Dd][Ss][Cc]

# Variations on URI
[Ui][Rr][IiLl]

Expand All @@ -76,4 +73,4 @@ name\:\s+.+$
(?:\[`?[0-9a-f]+`?\]\(https:/|)/(?:www\.|)github\.com(?:/[^/\s"]+){2,}(?:/[^/\s")]+)(?:[0-9a-f]+(?:[-0-9a-zA-Z/#.]*|)\b|)

# Store ID
9PNRBTZXMB4Z
9PNRBTZXMB4Z
22 changes: 11 additions & 11 deletions .github/workflows/spellCheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ name: Spell Checking
on:
push:
branches:
- '**'
- "**"
tags-ignore:
- '**'
- "**"
pull_request_target:
branches:
- '**'
- "**"
tags-ignore:
- '**'
- "**"
types:
- 'opened'
- 'reopened'
- 'synchronize'
- "opened"
- "reopened"
- "synchronize"

jobs:
spelling:
Expand All @@ -67,7 +67,7 @@ jobs:
steps:
- name: check-spelling
id: spelling
uses: check-spelling/check-spelling@v0.0.24
uses: check-spelling/check-spelling@v0.0.26
with:
suppress_push_for_open_pull_request: 1
checkout: true
Expand All @@ -82,7 +82,7 @@ jobs:
https://raw.githubusercontent.com/streetsidesoftware/cspell-dicts/098e323325a389a5d1cebcd7770807b9d11d0a17/dictionaries/powershell/src/powershell.txt
https://raw.githubusercontent.com/streetsidesoftware/cspell-dicts/098e323325a389a5d1cebcd7770807b9d11d0a17/dictionaries/win32/src/generator/win32.txt
https://raw.githubusercontent.com/streetsidesoftware/cspell-dicts/098e323325a389a5d1cebcd7770807b9d11d0a17/dictionaries/python/src/common_packages.txt
check_extra_dictionaries: ''
check_extra_dictionaries: ""

comment-push:
name: Report (Push)
Expand All @@ -94,7 +94,7 @@ jobs:
if: (success() || failure()) && needs.spelling.outputs.followup && github.event_name == 'push'
steps:
- name: comment
uses: check-spelling/check-spelling@v0.0.24
uses: check-spelling/check-spelling@v0.0.26
with:
checkout: true
spell_check_this: check-spelling/spell-check-this@prerelease
Expand All @@ -110,7 +110,7 @@ jobs:
if: (success() || failure()) && needs.spelling.outputs.followup && contains(github.event_name, 'pull_request')
steps:
- name: comment
uses: check-spelling/check-spelling@v0.0.24
uses: check-spelling/check-spelling@v0.0.26
with:
checkout: true
spell_check_this: check-spelling/spell-check-this@prerelease
Expand Down
Loading