File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
33name : 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}"
You can’t perform that action at this time.
0 commit comments