I need some help/guidance in inspect/view the full json payload in the dispatch event documented in the README.md.
My goal is to get the pull request number of the repository that has triggered the workflow.
I have tried a few options in vain
echo ${{ github.event.client_payload }} # just prints Object
echo ${{ github.event.client_payload.pull_request_url }} # does not output anything
echo ${{ github.event.client_payload.event.pull_request.number }} # does not output anything
I need some help/guidance in inspect/view the full json payload in the dispatch event documented in the README.md.
My goal is to get the pull request number of the repository that has triggered the workflow.
I have tried a few options in vain