Skip to content

ci(server): server boot gate — convert 'compiles' into 'boots' (#258) #519

ci(server): server boot gate — convert 'compiles' into 'boots' (#258)

ci(server): server boot gate — convert 'compiles' into 'boots' (#258) #519

Workflow file for this run

# 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]
# Cause-B mitigation (#77): de-duplicate stacked sync runs.
# cancel-in-progress is false so an in-flight sync always completes.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
permissions:
contents: read
jobs:
dispatch:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Trigger Propagation
uses: peter-evans/repository-dispatch@28959ce8df70de7be546dd1250a005dd32156697 # v3
with:
token: ${{ secrets.FARM_DISPATCH_TOKEN }}
repository: hyperpolymath/.git-private-farm
event-type: propagate
client-payload: |-
{
"repo": "${{ github.event.repository.name }}",
"ref": "${{ github.ref }}",
"sha": "${{ github.sha }}",
"forges": ""
}
- name: Confirm
run: echo "::notice::Propagation triggered for ${{ github.event.repository.name }}"