fix(github-mcp): vendor bash-mcp-sdk v3.0.0 to enforce numeric bounds #13
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: Validate | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - '.github/scripts/**' | |
| - '.github/workflows/validate.yml' | |
| - '.claude-plugin/marketplace.json' | |
| - '.agents/plugins/marketplace.json' | |
| - 'plugins/**/.claude-plugin/plugin.json' | |
| - 'plugins/**/.codex-plugin/plugin.json' | |
| - 'plugins/**/commands/**' | |
| - 'plugins/**/skills/**' | |
| - 'plugins/**/agents/**' | |
| - 'plugins/**/.mcp.json' | |
| - 'plugins/**/hooks/hooks.json' | |
| push: | |
| branches: [main] | |
| paths: | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - '.github/scripts/**' | |
| - '.github/workflows/validate.yml' | |
| - '.claude-plugin/marketplace.json' | |
| - '.agents/plugins/marketplace.json' | |
| - 'plugins/**/.claude-plugin/plugin.json' | |
| - 'plugins/**/.codex-plugin/plugin.json' | |
| - 'plugins/**/commands/**' | |
| - 'plugins/**/skills/**' | |
| - 'plugins/**/agents/**' | |
| - 'plugins/**/.mcp.json' | |
| - 'plugins/**/hooks/hooks.json' | |
| jobs: | |
| validate: | |
| name: Issue templates up to date | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install dependencies | |
| run: sudo apt-get update && sudo apt-get install -y jq | |
| - name: Validate issue templates | |
| run: .github/scripts/validate-issue-templates.sh |