File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ jobs:
5959 fail-fast : false
6060 max-parallel : 1
6161 matrix :
62- data : ${{ fromJson (needs.list-pr.outputs.prs) }}
62+ data : ${{ fromJSON (needs.list-pr.outputs.prs) }}
6363 steps :
6464 - name : Dispatch PR events to be out-of-tree test infra
6565 uses : peter-evans/repository-dispatch@v3
6666 with :
6767 token : ${{ secrets.COSDT_BOT_TOKEN }}
6868 repository : cosdt/pytorch-integration-tests
6969 event-type : pytorch-pr-event
70- client-payload : ${{ toJson (matrix.data) }}
70+ client-payload : ${{ toJSON (matrix.data) }}
Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ jobs:
1515 - name : Print PR event payload
1616 continue-on-error : true
1717 run : |
18- echo "payload: ${{ toJson (github.event.client_payload) }}"
18+ echo "payload: ${{ toJSON (github.event.client_payload) }}"
1919
2020 - name : Redispatch PyTorch event
2121 uses : peter-evans/repository-dispatch@v3
2222 with :
2323 token : ${{ secrets.COSDT_BOT_TOKEN }}
2424 repository : ${{ github.repository }}
2525 event-type : pytorch-pr-event-redispatch
26- client-payload : ${{ toJson (github.event.client_payload) }}
26+ client-payload : ${{ toJSON (github.event.client_payload) }}
You can’t perform that action at this time.
0 commit comments