[v11.1.x] Remove codespell (#99433)

This commit is contained in:
Jack Baldry
2025-01-23 12:41:24 +00:00
committed by GitHub
parent 9dba7c2dd3
commit b3ce967d0d
4 changed files with 1 additions and 29 deletions
+1 -11
View File
@@ -1216,11 +1216,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:
@@ -1601,11 +1596,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:
@@ -4981,6 +4971,6 @@ kind: secret
name: gcr_credentials
---
kind: signature
hmac: 27e32d34ccdca70ed66bb8e2a0a118deb2c00380fb20218844fa5f402bc5436b
hmac: a90a2d08c346acd26e9b894cfb516d5d96e57e03adc885bb64c5e8c1e8942cae
...
-6
View File
@@ -1,6 +0,0 @@
aks
eror
iam
wan
[Operato Windrose](https://grafana.com/grafana/plugins/operato-windrose-panel/)
sergent
-2
View File
@@ -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(),
-10
View File
@@ -725,16 +725,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.