OpenSpec Sync #41
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: OpenSpec Sync | |
| on: | |
| push: | |
| branches: [development] | |
| paths: ['openspec/**'] | |
| workflow_dispatch: | |
| jobs: | |
| sync: | |
| # Permission CEILING for the called workflow, not a grant. The callee's | |
| # `sync` job already declares exactly `issues: write` + `contents: read`, so | |
| # this restates today's effective token. It creates/updates the OpenSpec | |
| # tracking issues; the board placement is disabled (GITHUB_TOKEN cannot do | |
| # ProjectsV2 — ConductionNL/.github#432). | |
| permissions: | |
| issues: write | |
| contents: read | |
| uses: ConductionNL/.github/.github/workflows/openspec-sync.yml@main | |
| with: | |
| app-name: softwarecatalog | |
| secrets: | |
| PROJECT_TOKEN: ${{ secrets.PROJECT_TOKEN }} |