test(organization): require rejection fixtures to prove their intende… #25
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
| # Pushes core-managed agent skills to consuming repos as PRs (ADR-0026). | |
| # Runs on skill changes, weekly (drift catch), and manual dispatch. | |
| name: Sync agent skills | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".agents/skills/**" | |
| - ".github/skills-sync.json" | |
| - ".github/workflows/sync-skills.yml" | |
| - "scripts/sync-skills.sh" | |
| schedule: | |
| - cron: "23 5 * * 1" | |
| workflow_dispatch: {} | |
| permissions: {} | |
| concurrency: | |
| group: sync-skills | |
| cancel-in-progress: false | |
| jobs: | |
| sync: | |
| if: github.repository == 'frostyard/core' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Sync skills to consuming repos | |
| env: | |
| GH_TOKEN: ${{ secrets.ORG_PAT }} | |
| run: ./scripts/sync-skills.sh |