Test Log workflow_run payload #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Log workflow_run payload | |
| on: | |
| workflow_run: | |
| workflows: ["Test Build"] | |
| types: [completed] | |
| jobs: | |
| log: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Dump full workflow_run payload | |
| run: echo '${{ toJson(github.event.workflow_run) }}' |