[v11.3.x] Remove codespell (#99430)

release-11.3.3
Jack Baldry 5 months ago committed by GitHub
parent a7fc5daee1
commit d796e44fee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      .drone.yml
  2. 6
      docs/.codespellignore
  3. 2
      scripts/drone/pipelines/docs.star
  4. 10
      scripts/drone/steps/lib.star

@ -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
...

@ -1,6 +0,0 @@
aks
eror
iam
wan
[Operato Windrose](https://grafana.com/grafana/plugins/operato-windrose-panel/)
sergent

@ -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…
Cancel
Save