diff --git a/.drone.yml b/.drone.yml index 5f190d8181d..4688b2259d0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1303,11 +1303,6 @@ steps: depends_on: [] image: node:20.9.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: @@ -1688,11 +1683,6 @@ steps: depends_on: [] image: node:20.9.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: @@ -5739,6 +5729,6 @@ kind: secret name: gcr_credentials --- kind: signature -hmac: be19150e8d9c93d3e71e570e9e8c6a13310bbde351260ccc73f7b2c515f8d511 +hmac: 0e1d79751c8853ce588b471b8d82d62f2a1ca1cd2cd049353a6bc8c7a3d21ff4 ... diff --git a/docs/.codespellignore b/docs/.codespellignore deleted file mode 100644 index 9ed49bf7d70..00000000000 --- a/docs/.codespellignore +++ /dev/null @@ -1,6 +0,0 @@ -aks -eror -iam -wan -[Operato Windrose](https://grafana.com/grafana/plugins/operato-windrose-panel/) -sergent 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 2f93bc972cd..8e37aa6b8a5 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.