move codespell check into /docs (#83109)

Signed-off-by: bergquist <carl.bergquist@gmail.com>
This commit is contained in:
Carl Bergquist 2024-02-20 20:40:31 +01:00 committed by GitHub
parent 8f3d49687e
commit 53c19e4988
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View File

@ -1062,7 +1062,7 @@ steps:
name: yarn-install
- commands:
- pip3 install codespell
- codespell -I .codespellignore docs/
- codespell -I docs/.codespellignore docs/
image: python:3.8
name: codespell
- commands:
@ -1422,7 +1422,7 @@ steps:
name: yarn-install
- commands:
- pip3 install codespell
- codespell -I .codespellignore docs/
- codespell -I docs/.codespellignore docs/
image: python:3.8
name: codespell
- commands:
@ -4804,6 +4804,6 @@ kind: secret
name: gcr_credentials
---
kind: signature
hmac: 2a70d8442b85841e1b882c9562e8cc42b0c4b697a49ee03d086218f79cdff660
hmac: 14033c6fa9749db7c17aca8b404569c8e4bcb51e39cdb39b300870758db10c48
...

2
.github/CODEOWNERS vendored
View File

@ -13,7 +13,6 @@
# Documentation
/.changelog-archive @grafana/grafana-release-guild
/.codespellignore @grafana/docs-tooling
/CHANGELOG.md @grafana/grafana-release-guild
/CODE_OF_CONDUCT.md @grafana/grafana-community-support
/CONTRIBUTING.md @grafana/grafana-community-support
@ -36,6 +35,7 @@
# `make docs` procedure and related workflows are owned @grafana/docs-tooling. Slack #docs.
# Documentation sources might have different owners.
/docs/ @grafana/docs-tooling
/docs/.codespellignore @grafana/docs-tooling
/docs/sources/ @Eve832
/docs/sources/administration/ @jdbaldry
/docs/sources/alerting/ @brendamuir

View File

@ -687,7 +687,7 @@ def codespell_step():
"image": images["python"],
"commands": [
"pip3 install codespell",
"codespell -I .codespellignore docs/",
"codespell -I docs/.codespellignore docs/",
],
}