HIQ-973 Create Cloudian-customized version of Grafana 9 #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "doc-validator" | |
on: | |
pull_request: | |
paths: ["docs/sources/**"] | |
workflow_dispatch: | |
jobs: | |
doc-validator: | |
runs-on: "ubuntu-latest" | |
container: | |
image: "grafana/doc-validator:v1.9.0" | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v3" | |
- name: "Run doc-validator tool" | |
# Ensure that the CI always passes until all errors are resolved. | |
run: "doc-validator --skip-image-validation ./docs/sources /docs/grafana/latest || true" |