Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into dev/migrie/b/pane-i…
Browse files Browse the repository at this point in the history
…nitialization-order
  • Loading branch information
DHowett committed Mar 25, 2020
2 parents 1a15db3 + 0461a2a commit 34391c7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Spell checking
on:
push:
branches:
- "*"
tags-ignore:
- "*"
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '15 * * * *'
Expand Down

1 comment on commit 34391c7

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New misspellings found, please review:

  • caler
  • keeing
  • propogate
  • recieve
To accept these changes, run the following commands
remove_obsolete_words=$(mktemp)
echo '#!/usr/bin/perl -ni
my $re=join "|", qw(
Impl
);
next if /^($re)(?:$| .*)/;
print;' > $remove_obsolete_words
chmod +x $remove_obsolete_words
for file in .github/actions/spell-check/whitelist/alphabet.txt .github/actions/spell-check/whitelist/web.txt .github/actions/spell-check/whitelist/whitelist.txt; do $remove_obsolete_words $file; done
rm $remove_obsolete_words
(
echo "
caler
impl
keeing
propogate
recieve
"
) | sort -u -f | perl -ne 'next unless /./; print' > new_whitelist.txt && mv new_whitelist.txt '.github/actions/spell-check/whitelist/34391c79cbbe12d641bfe89603388a19bcad4296.txt'

Please sign in to comment.