mirror of
https://github.com/coreos/prometheus-operator.git
synced 2026-02-05 15:46:31 +01:00
Bumps [streetsidesoftware/cspell-action](https://github.com/streetsidesoftware/cspell-action) from 8.1.2 to 8.2.0.
- [Release notes](https://github.com/streetsidesoftware/cspell-action/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell-action/blob/main/CHANGELOG.md)
- [Commits](24fa8d3096...d5d910b521)
---
updated-dependencies:
- dependency-name: streetsidesoftware/cspell-action
dependency-version: 8.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
23 lines
450 B
YAML
23 lines
450 B
YAML
name: Spell Check
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
spell-check:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Run cSpell
|
|
uses: streetsidesoftware/cspell-action@d5d910b521ad408f1e7383c24609079f5a88bdca
|
|
with:
|
|
incremental_files_only: false
|
|
files: "**/*.{md,yaml,yml}"
|
|
config: '.github/workflows/cspell.json'
|