-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CHANGELOG.md for v 7.0.0 (#774)
* Update CHANGELOG.md * Update CHANGELOG.md removed wrong info * Add syntax & spell CHANGELOG.md check (#770) * Add syntax & spell CHANGELOG.md check * Add aspell personal dictionary * Fix typos * Fix workflow * Fix md formatting * Small fix * Small fix * Fix typos * Trigger only push on paths * Update CHANGELOG.md * Update CHANGELOG.md * Fix spellchecker exeption * Run spellcheker on dictionary change Co-authored-by: Semyon Bezrukov <[email protected]> Co-authored-by: svetlana maleeva <[email protected]> Co-authored-by: Alexey Golubev <[email protected]>
- Loading branch information
1 parent
9f6b8df
commit bd3db03
Showing
4 changed files
with
458 additions
and
55 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
personal_ws-1.1 en 218 utf-8 | ||
ACOT | ||
ACOTH | ||
ASC | ||
aspose | ||
autocolor | ||
autocomplete | ||
AutoCorrect | ||
autocorrection | ||
autofill | ||
Autofilter | ||
autofilter | ||
autofilters | ||
Autofit | ||
autofit | ||
AutoFormat | ||
Autorun | ||
AVERAGEA | ||
AVERAGEIFS | ||
BETADIST | ||
BETAINV | ||
BINOM | ||
blocklevelstd | ||
BMP | ||
br | ||
brower | ||
bugfix | ||
cff | ||
CHIDIST | ||
CHIINV | ||
chinese | ||
CHISQ | ||
CJK | ||
ClipArt | ||
CNumberingLvlLegacy | ||
coedit | ||
COMBINA | ||
compatibilityMode | ||
CONCAT | ||
COnOfftype | ||
Convertion | ||
convertion | ||
COTH | ||
COUNTIFS | ||
CSC | ||
CSCH | ||
CSV | ||
csv | ||
Ctrl | ||
ctrl | ||
dataset | ||
Decryptor | ||
DesktopEditors | ||
Deutsch | ||
DMS | ||
DocumentServer | ||
DOCX | ||
Docx | ||
docx | ||
DOTX | ||
drag'n'drop | ||
endnotes | ||
ePub | ||
EQ | ||
Español | ||
ETS | ||
EXC | ||
EXPON | ||
fb | ||
FDIST | ||
FINV | ||
fodp | ||
fods | ||
fodt | ||
FORMULATEXT | ||
FTEST | ||
GAMMADIST | ||
GAMMAINV | ||
glyphs | ||
gridlines | ||
hideContentControlTrack | ||
HiDPI | ||
HLOOKUP | ||
html | ||
HYPGEOM | ||
icu | ||
IFNA | ||
IMCOSH | ||
IMCOT | ||
IMCSC | ||
IMCSCH | ||
IMSEC | ||
IMSECH | ||
IMSINH | ||
IMTAN | ||
InsertContent | ||
INV | ||
japanese | ||
JPG | ||
JS | ||
js | ||
kDrive | ||
korean | ||
Liferay | ||
LINEST | ||
linux | ||
LOGEST | ||
LOGNORM | ||
MacOS | ||
MacOs | ||
macOS | ||
MathType | ||
mathType | ||
metafile | ||
mht | ||
multichart | ||
multiselect | ||
México | ||
Nederland | ||
Nederlands | ||
Nextcloud | ||
Num | ||
num | ||
numberings | ||
NUMBERVALUE | ||
ODF | ||
odf | ||
OdfFormat | ||
ODP | ||
ods | ||
ODT | ||
odt | ||
onDocumentStateChange | ||
ONLYOFFICE | ||
ooxml | ||
OpenFormat | ||
OTP | ||
OTS | ||
OTT | ||
overwright | ||
ownCloud | ||
pageDown | ||
ParaDrawing | ||
param | ||
params | ||
PDURATION | ||
PERCENTRANK | ||
PhotoEditor | ||
PNG | ||
POTX | ||
ppt | ||
pptx | ||
PptxFormat | ||
Preseentation | ||
RANDARRAY | ||
rastr | ||
ReadFromBinary | ||
Realtime | ||
rect | ||
republika | ||
RTF | ||
rtf | ||
savefile | ||
Schweiz | ||
Seafile | ||
SECH | ||
selectwheel | ||
SharedWorker | ||
SheetView | ||
si | ||
Slovenská | ||
Slovenčina | ||
spanish | ||
sparkline | ||
Sparklines | ||
sparklines | ||
Spellcheker | ||
SSO | ||
stirkeout | ||
SUMIFS | ||
Svenska | ||
Sverige | ||
SVG | ||
tabSelected | ||
TDIST | ||
thai | ||
TINV | ||
TOC | ||
tooltip | ||
trackpad | ||
TXT | ||
txt | ||
UI | ||
uncalculated | ||
undelete | ||
undocking | ||
Ungroup | ||
ungroup | ||
updocked | ||
url | ||
usersfiles | ||
UTF | ||
ViewAll | ||
VLOOKUP | ||
vml | ||
VSRedis | ||
wav | ||
WMF | ||
wmf | ||
xfIndexNumber | ||
XLOOKUP | ||
XLS | ||
xls | ||
XLSX | ||
xlsx | ||
XLTX | ||
Yandex | ||
yy | ||
YYYY | ||
yyyy |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: check | ||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- 'CHANGELOG.md' | ||
- '.aspell.*.pws' | ||
jobs: | ||
markdownlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js 12 | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
- name: Run markdownlint linter | ||
run: | | ||
npm install -g markdownlint-cli | ||
markdownlint CHANGELOG.md | ||
spellchecker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup aspell | ||
run: sudo apt-get -y update && sudo apt-get -y install aspell aspell-en | ||
- name: Run spellchecker | ||
run: | | ||
SPELLCHECK_OUT=$(cat CHANGELOG.md \ | ||
| aspell --lang=en --encoding=utf-8 --personal=./.aspell.en.pws list) | ||
echo $SPELLCHECK_OUT | ||
test $(echo -n $SPELLCHECK_OUT | wc -c) -eq 0 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"MD024": { "siblings_only": true } | ||
} |
Oops, something went wrong.