Add Everything OpenAI Codex #32
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: Validate Plugin PR | |
| on: | |
| pull_request: | |
| paths: | |
| - "plugins/**" | |
| - ".agents/plugins/marketplace.json" | |
| - "plugins.json" | |
| permissions: | |
| contents: read | |
| id-token: none | |
| jobs: | |
| validate: | |
| name: Validate plugin bundles | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Validate changed plugin bundles | |
| run: python3 scripts/validate-plugin-pr.py --base-ref origin/${{ github.base_ref }} |