Skip to content

Commit ca2da8f

Browse files
committed
fix(ci): replace corrupted instant-sync.yml with canonical boj-server version
File had random spaces inserted throughout (e.g. 'Syn c', 'permission s', 'name :'), breaking YAML parse. Restoring boj-server's clean copy.
1 parent e667505 commit ca2da8f

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/instant-sync.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: MPL-2.0-or-later
1+
# SPDX-License-Identifier: MPL-2.0
22
# Instant Forge Sync - Triggers propagation to all forges on push/release
33
name: Instant Sync
44

@@ -23,16 +23,13 @@ jobs:
2323
event-type: propagate
2424
client-payload: |-
2525
{
26-
"repo": "${{ github.event.repository.name }}",
27-
"ref": "${{ github.ref }}",
28-
"sha": "${{ github.sha }}",
26+
"repo": ${{ toJSON(github.event.repository.name) }},
27+
"ref": ${{ toJSON(github.ref) }},
28+
"sha": ${{ toJSON(github.sha) }},
2929
"forges": ""
3030
}
3131
3232
- name: Confirm
33-
run: echo "::notice::Propagation triggered for ${{ github.event.repository.name }}"
34-
35-
- name: K9-SVC Validation
36-
run: |
37-
echo "K9-SVC validation"
38-
[ -d .machine_readable/contractiles ] && echo "Contractiles present" || echo "No contractiles"
33+
env:
34+
REPO_NAME: ${{ github.event.repository.name }}
35+
run: echo "::notice::Propagation triggered for ${REPO_NAME}"

0 commit comments

Comments
 (0)