fix(workflow): address all review warnings/suggestions — snapshot err… #23
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: Security Audit | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'skills/**' | |
| - 'agents/**' | |
| - 'hooks/**' | |
| - 'commands/**' | |
| - 'scripts/**' | |
| pull_request: | |
| paths: | |
| - 'skills/**' | |
| - 'agents/**' | |
| - 'hooks/**' | |
| - 'commands/**' | |
| - 'scripts/**' | |
| schedule: | |
| - cron: '0 0 * * 1' | |
| workflow_dispatch: | |
| jobs: | |
| audit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Generate integrations | |
| run: bash scripts/convert.sh all | |
| - name: Security audit (14 checks) | |
| run: bash scripts/security-audit.sh | |
| - name: Skill quality audit | |
| run: bash scripts/quality-audit.sh | |
| - name: Integration sync audit | |
| run: bash scripts/sync-audit.sh | |
| - name: Link validation audit | |
| run: bash scripts/link-audit.sh |