add alert list label filter option #1140
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: "Check docs and links" | |
on: | |
- pull_request | |
- push | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# - uses: ammaraskar/sphinx-action@master | |
# Using fork of sphinx-action to support python version > 3.9 | |
# As sphinx-action not updated the sphinx docker image it uses | |
- uses: erpcya/sphinx-action@feature/#update-sphinx-base-image | |
with: | |
docs-folder: "docs/" | |
pre-build-command: | | |
pip3 install --upgrade pip | |
sphinx-apidoc -f grafanalib -o docs/api | |
python3 setup.py install --user | |
build-command: "make html" | |
- name: Link Checker | |
id: lc | |
uses: lycheeverse/lychee-action@v1.10.0 | |
with: | |
args: --verbose **/*.html | |
- name: Fail if there were link errors | |
run: exit ${{ steps.lc.outputs.exit_code }} |