perf(trie): batch proof jobs at worker level with funnel batching (experiment) #2419
This file contains hidden or 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: grafana | |
| on: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: [main] | |
| jobs: | |
| check-dashboard: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check for ${DS_PROMETHEUS} in overview.json | |
| run: | | |
| if grep -Fn '${DS_PROMETHEUS}' etc/grafana/dashboards/overview.json; then | |
| echo "Error: overview.json contains '\${DS_PROMETHEUS}' placeholder" | |
| echo "Please replace it with '\${datasource}'" | |
| exit 1 | |
| fi | |
| echo "✓ overview.json does not contain '\${DS_PROMETHEUS}' placeholder" |