feat(metrics): expose query-metrics and metric-names-list MCP tools #124176
Workflow file for this run
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: shellcheck | |
| on: | |
| pull_request: | |
| merge_group: | |
| permissions: | |
| contents: read | |
| jobs: | |
| shell_check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| name: shellcheck | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install shellcheck | |
| run: sudo apt update && sudo apt install -y shellcheck | |
| - name: Check secrets scripts | |
| run: cd bin && shellcheck deploy-hobby | |
| # Runs here, not in a path-gated ci-* job, so AGENTS/CLAUDE changes | |
| # anywhere in the repo are validated on every PR. | |
| - name: Check AGENTS.md / CLAUDE.md symlinks | |
| run: | | |
| shellcheck .github/scripts/check-agents-md-symlinks.sh | |
| .github/scripts/check-agents-md-symlinks.sh |