mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
7125ad401a
3b1a8579dUpdate themeb1f04fd47params: Adjust the twitter handle2c8ba029fFix typo4421e46ecUpdate Where.md5f9fec6a5Update glossary.mdfb16945cfcollections.Where - Clarify description of "collection"4d6d7018bUpdate Include.md - improve return statement example037151073Update IncludeCached - improve return statement exampleb053fa09cImprove return typesf7d615267Describe minimum required Windows versione97762b2aUpdate front matter in math.Sub9e4d03a79Fix data.GetJSON examples9029ee123Update spellcheck GitHub Actionc852fe421Add version verification step to quick start guide8fafca49cCorrect front matter exampleb412fdf65Fix closing tag in notes docs9a64d9579Add hreflang Tag to Translation Link example2d2a82101Fix inverted examples in Permalink and RelPermalinkff3e67e3fCorrect spelling3904b72e3Fix documentation contribution steps enumeration348fd3c02Fix some typos in the content summaries pagea5823459aFix two links, one to bonsai.io and one to digital.govc36978686Fix typo0ee3ff44fVendor theme6b0a9b75dFix typo44e4cb5c6Fix typos815071742Update min Go version to build from source192d14df5Fix typoe4a18946eMiscellaneous correctionsf12b7b74enetlify: Hugo 0.121.297dbc1ea1Merge branch 'tempv0.121.2'dc1c0aeebAdd cache note to resources.Concata8d1a6020Correct return typeeca22e97cFix front matter7de247a03Correct return type5058bc520collections.Seq: Specify max slice sizee24d81a4bFix typo on FAQ pageff8cf5a88Correct 'related' front matter values88b21fae0Adjust deprecation handlingf7e19a25bUpdate terminology on shortcode templates page01e10942aAdjust formatting6ed2e19c2tpl/math: Add math.Rand template functionb494a8d8dUpdate js.md6d78035f4Add interval description to glossary (#2378)f9b612b64Templates Lookup Order: Add missing parenthesis741ab1bb2Show vendorClosest in module default configeb8cb878fFix Babel headingscdcdfc8e8Change project name in Codeowners examplef31fe0d63Update link to image filters9dee1ee0eUpdate Solus installation instructions716636feeAdd TOC to collections.Sortf7c64143cUpdate collections.Sort4b8f6b991Add id attributes to Scratch and Store methods2a1adea79Add id attributes to GitInfo, File, and Resources methodsb12d9cb8fAdd Alpine Linux installation instructionsdfbebeec7Change writeStats to buildStats175b8aac8resources/images: Create AutoOrient image filterba8e05c31Update img shortcode7fc15a6ccFix default value of pluralizeListTitlesa0be4fd8aAdd Comentario to available comment engines71aa7d8abUpdate GitInfo.md348441491EXIF: describe applicable image types743497edaDisable TOC for lang.Translateb3b1df75dDescribe lang.Translate fallback behaviora6d9c362cCategorize CLI commands to improve search results08cc2da4bDocument canonical config for enabling inline shortcodes8945be9c6Update description of the humanize ordinal conversionb8b4ccb6fFix grammatical errorf53f9f936Fix description of strings.HasSuffixcdbe19b5bUpdate Params.mde00c4eea2Reformat site config descriptions6f50c0755Enumerate root configuration keys1f2e7b9b2Use canonical key when documenting menu configs7d5a13d8dUpdate images.Text filter315d2f8c3Add math.Counter example to warnf8ed9cdaa9Miscellaneous edits2bda491ebFix front matter example5c5bbbe3anetlify: Bump to Hugo 0.121.1ed08f5943Update Gentoo installation instructionse4eb48457Miscellaneous edits8c3700d12netlify: Bump to Hugo 0.121.01bb5a377fMerge branch 'tempv0.121.0'8cba89504Improve where function0dfc00b0fdocs: Regen docshelper028076a66Fix link to Gentoo package52d2db4ffFix typo120025c19Improve Gentooo installation instructions0c31a4b45Update GitHub hosting workflow exampledee99c36aDefend against missing aliases in quick-reference shortcoded305278f1Add Gentoo installation instructionsbe98a37e1docs: Adjust last merge from docs repositorya703dab53docs: Regen docs helper2e9c3532fMerge commit '35dec7c96f7ee3eb17dd444f7067f0c776fb56ae'f57fdb44bdeps: Update github.com/tdewolff/minify/v2 v2.20.7 => v2.20.850cad5e38tpl/transform: Add transform.XMLEscape template function git-subtree-dir: docs git-subtree-split:3b1a8579d2
23 lines
439 B
YAML
23 lines
439 B
YAML
name: "Check spelling"
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches-ignore:
|
|
- "dependabot/**"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
spellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: streetsidesoftware/cspell-action@v5
|
|
with:
|
|
check_dot_files: false
|
|
files: content/**/*.md
|
|
incremental_files_only: true
|
|
inline: warning
|
|
strict: false
|