mirror of https://github.com/grafana/grafana.git
[v11.5.x] Remove codespell (#99428)
This commit is contained in:
parent
41e7cd2c02
commit
56e82b7a1c
12
.drone.yml
12
.drone.yml
|
|
@ -1273,11 +1273,6 @@ steps:
|
|||
depends_on: []
|
||||
image: node:22.11.0-alpine
|
||||
name: yarn-install
|
||||
- commands:
|
||||
- pip3 install codespell
|
||||
- codespell -I docs/.codespellignore docs/
|
||||
image: python:3.8
|
||||
name: codespell
|
||||
- commands:
|
||||
- yarn run prettier:checkDocs
|
||||
depends_on:
|
||||
|
|
@ -1635,11 +1630,6 @@ steps:
|
|||
depends_on: []
|
||||
image: node:22.11.0-alpine
|
||||
name: yarn-install
|
||||
- commands:
|
||||
- pip3 install codespell
|
||||
- codespell -I docs/.codespellignore docs/
|
||||
image: python:3.8
|
||||
name: codespell
|
||||
- commands:
|
||||
- yarn run prettier:checkDocs
|
||||
depends_on:
|
||||
|
|
@ -5579,6 +5569,6 @@ kind: secret
|
|||
name: gcr_credentials
|
||||
---
|
||||
kind: signature
|
||||
hmac: 0b65132489eddfdfc34b5d05ff2aea1ca556e0e634a22457e2411eb1e1ec544d
|
||||
hmac: 154c1f072294cef09ba4f579eed30b1e29bc5c263897c862f4574432d321502c
|
||||
|
||||
...
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
aks
|
||||
eror
|
||||
geomap
|
||||
Geomap
|
||||
grafanalib
|
||||
grafonnet
|
||||
iam
|
||||
Jsonnet
|
||||
[Operato Windrose](https://grafana.com/grafana/plugins/operato-windrose-panel/)
|
||||
runbook
|
||||
sergent
|
||||
sparkline
|
||||
wan
|
||||
|
|
@ -5,7 +5,6 @@ This module returns all the pipelines used in the event of documentation changes
|
|||
load(
|
||||
"scripts/drone/steps/lib.star",
|
||||
"build_docs_website_step",
|
||||
"codespell_step",
|
||||
"identify_runner_step",
|
||||
"verify_gen_cue_step",
|
||||
"yarn_install_step",
|
||||
|
|
@ -33,7 +32,6 @@ def docs_pipelines(ver_mode, trigger):
|
|||
steps = [
|
||||
identify_runner_step(),
|
||||
yarn_install_step(),
|
||||
codespell_step(),
|
||||
lint_docs(),
|
||||
build_docs_website_step(),
|
||||
verify_gen_cue_step(),
|
||||
|
|
|
|||
|
|
@ -753,16 +753,6 @@ def frontend_metrics_step(trigger = None):
|
|||
step = dict(step, when = trigger)
|
||||
return step
|
||||
|
||||
def codespell_step():
|
||||
return {
|
||||
"name": "codespell",
|
||||
"image": images["python"],
|
||||
"commands": [
|
||||
"pip3 install codespell",
|
||||
"codespell -I docs/.codespellignore docs/",
|
||||
],
|
||||
}
|
||||
|
||||
def grafana_server_step():
|
||||
"""Runs the grafana-server binary as a service.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue