mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 21:32:58 +00:00
* refactor: split cluster metrics into multiple dashboards * chore: merge multiple dashboards into one dashboard * refactor: add 'dac' tool to generate a intermediate dashboards * refactor: generate markdown docs for dashboards
27 lines
575 B
YAML
27 lines
575 B
YAML
name: Check Grafana Panels
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'grafana/**' # Trigger only when files under the grafana/ directory change
|
|
|
|
jobs:
|
|
check-panels:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
# Check out the repository
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
# Install jq (required for the script)
|
|
- name: Install jq
|
|
run: sudo apt-get install -y jq
|
|
|
|
# Make the check.sh script executable
|
|
- name: Check grafana dashboards
|
|
run: |
|
|
make check-dashboards
|