Skip to content

docs(v-ecosystem): note awesome-v listings for v-grpc and v-rest #68

docs(v-ecosystem): note awesome-v listings for v-grpc and v-rest

docs(v-ecosystem): note awesome-v listings for v-grpc and v-rest #68

Workflow file for this run

# SPDX-License-Identifier: PMPL-1.0-or-later

Check failure on line 1 in .github/workflows/instant-sync.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/instant-sync.yml

Invalid workflow file

(Line: 17, Col: 9): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.FARM_DISPATCH_TOKEN != ''
# Instant Forge Sync - Triggers propagation to all forges on push/release
name: Instant Sync
on:
push:
branches: [main, master]
release:
types: [published]
permissions:
contents: read
jobs:
dispatch:
runs-on: ubuntu-latest
if: ${{ secrets.FARM_DISPATCH_TOKEN != '' }}
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 }}"