Merge remote-tracking branch 'origin/develop' into develop #39
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: PR Review with MCP | ||
| on: | ||
| branches: [ main ] | ||
| issue_comment: | ||
| types: [created] | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
| jobs: | ||
| pr-validation: | ||
| if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '@copilot review') | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Copilot Code Review | ||
| run: | | ||
| copilot-mcp review . \ | ||
| --agent copilot-code-reviewer \ | ||
| --output-format github-pr-comment | ||
| - name: Codex Infra Review | ||
| run: | | ||
| codex-mcp validate infrastructure/ \ | ||
| --agent infrastructure-configuration-validator \ | ||
| --output-format github-pr-comment | ||
| - name: Security Review | ||
| run: | | ||
| copilot-mcp analyze security/ \ | ||
| --agent copilot-security-reviewer \ | ||
| --output-format github-pr-comment | ||