docs(planning): category-leadership programme — beyond completion (#268) #590
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
| # SPDX-License-Identifier: MPL-2.0 | |
| # Instant Forge Sync - Triggers propagation to all forges on push/release | |
| name: Instant Sync | |
| on: | |
| push: | |
| branches: [main, master] | |
| release: | |
| types: [published] | |
| # Estate guardrail: cancel superseded runs so re-pushes / rebased PR | |
| # updates do not pile up queued runs against the shared account-wide | |
| # Actions concurrency pool. Applied only to read-only check workflows | |
| # (no publish/mutation), so cancelling a superseded run is always safe. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| dispatch: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Trigger Propagation | |
| uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # v3 | |
| with: | |
| token: ${{ secrets.FARM_DISPATCH_TOKEN }} | |
| repository: hyperpolymath/.git-private-farm | |
| event-type: propagate | |
| client-payload: |- | |
| { | |
| "repo": ${{ toJSON(github.event.repository.name) }}, | |
| "ref": ${{ toJSON(github.ref) }}, | |
| "sha": ${{ toJSON(github.sha) }}, | |
| "forges": "" | |
| } | |
| - name: Confirm | |
| env: | |
| REPO_NAME: ${{ github.event.repository.name }} | |
| run: echo "::notice::Propagation triggered for ${REPO_NAME}" |