mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
46d7c30eb3
Bumps [streetsidesoftware/cspell-action](https://github.com/streetsidesoftware/cspell-action) from 5 to 6. - [Release notes](https://github.com/streetsidesoftware/cspell-action/releases) - [Changelog](https://github.com/streetsidesoftware/cspell-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/streetsidesoftware/cspell-action/compare/v5...v6) --- updated-dependencies: - dependency-name: streetsidesoftware/cspell-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com>
37 lines
676 B
YAML
37 lines
676 B
YAML
name: cspell
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
FORCE_COLOR: 2
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
cspell:
|
|
permissions:
|
|
# allow streetsidesoftware/cspell-action to fetch files for commits and PRs
|
|
contents: read
|
|
pull-requests: read
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Run cspell
|
|
uses: streetsidesoftware/cspell-action@v6
|
|
with:
|
|
config: ".cspell.json"
|
|
files: "**/*.md"
|
|
inline: error
|
|
incremental_files_only: false
|