mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
17 lines
447 B
YAML
17 lines
447 B
YAML
|
name: "doc-validator"
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths: ["docs/sources/**"]
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
doc-validator:
|
||
|
runs-on: "ubuntu-latest"
|
||
|
container:
|
||
|
image: "grafana/doc-validator:latest"
|
||
|
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 ./docs/sources || true"
|