diff --git a/.drone.yml b/.drone.yml index c3982637c18..f81d8bbbc69 100644 --- a/.drone.yml +++ b/.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 ... diff --git a/docs/.codespellignore b/docs/.codespellignore deleted file mode 100644 index 43ea4f4fa93..00000000000 --- a/docs/.codespellignore +++ /dev/null @@ -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 diff --git a/scripts/drone/pipelines/docs.star b/scripts/drone/pipelines/docs.star index 536749b9e04..7b1f63642bc 100644 --- a/scripts/drone/pipelines/docs.star +++ b/scripts/drone/pipelines/docs.star @@ -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(), diff --git a/scripts/drone/steps/lib.star b/scripts/drone/steps/lib.star index e8afa62788f..36cd3a2db86 100644 --- a/scripts/drone/steps/lib.star +++ b/scripts/drone/steps/lib.star @@ -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.